#nodeinteractive
Explore tagged Tumblr posts
Text
#NodeInteractive is expanding this year to focus on more technologies in the JavaScript ecosystem 🎉 Given the expansion, we have a new name: JS Interactive 😀 #JSInteractive Here's what to expect: https://t.co/IQXybehAmp
#NodeInteractive is expanding this year to focus on more technologies in the JavaScript ecosystem 🎉 Given the expansion, we have a new name: JS Interactive 😀 #JSInteractive Here's what to expect: https://t.co/IQXybehAmp
— Node.js (@nodejs) February 7, 2018
nodejs
0 notes
Text
Franziska Hinkelmannさんのツイート: "Here's my keynote from #NodeInteractive Learn what the Chrome @v8js team is doing to continue to support Node.js. https://t.co/oVRJwYOXz4… https://t.co/smnnm0p7Vk" [はてなブックマーク]
Franziska Hinkelmannさんのツイート: "Here's my keynote from #NodeInteractive Learn what the Chrome @v8js team is doing to continue to support Node.js. https://t.co/oVRJwYOXz4… https://t.co/smnnm0p7Vk"
Franziska Hinkelmann @ fhinkel Ph.D. software engineer working at Google on Chrome @ v8js . Node.js TSC member. JavaScript.
kjw_junichi
from kjw_junichiのブックマーク http://twitter.com/fhinkel/status/919479162225790976?s=12
0 notes
Photo
#NodeInteractive is expanding this year to focus on more technologies in the JavaScript ecosystem 🎉 Given the expansion, we have a new name: JS Interactive 😀 #JSInteractive Here's what to expect: https://t.co/IQXybehAmp
0 notes
Photo
#NodeInteractive is expanding this year to focus on more technologies in the JavaScript ecosystem 🎉 Given the expansion, we have a new name: JS Interactive 😀 #JSInteractive Here's what to expect: https://t.co/IQXybehAmp #javascript #angular #angularjs #node #react #vuejs #js
0 notes
Photo
#NodeInteractive is expanding this year to focus on more technologies in the JavaScript ecosystem 🎉 Given the expansion, we have a new name: JS Interactive 😀 #JSInteractive Here's what to expect: https://t.co/IQXybehAmp #angular #angularjs #javascript #node #react
0 notes
Photo
#NodeInteractive is expanding this year to focus on more technologies in the JavaScript ecosystem 🎉 Given the expansion, we have a new name: JS Interactive 😀 #JSInteractive Here's what to expect: https://t.co/IQXybehAmp #node #nodejs #angular #angularjs #javascript #react
0 notes
Text
The Node.js Community was amazing in 2017! Here's the proof:
Let me just start by stating this:
2017 was a great year for the Node.js Community!
Our favorite platform has finally matured to be widely adopted in the enterprise, also, a lot of great features have been merged into the core, like async/await & http2, just to mention a few.
The world runs on node ✨🐢🚀✨ #NodeInteractive http://pic.twitter.com/5PwDC2w1mE
— Franziska Hinkelmann (@fhinkel) October 4, 2017
Not only the developers who contribute to Node make this platform so great, but those who create learning materials around it were also exceptional.
In our final article of 2017, we collected a bunch of longreads which were created by the Node community. We used data from Reddit, Hacker News, Twitter & Medium to search for the most read, most shared & liked stuff out there. We intentionally omitted articles written by RisingStack (except 1, couldn't resist) - if you're interested in those, please visit our top15 of 2017 post!
I'm sure we left a bunch of amazing articles out - so if you'd like to get attention to an exceptional one you read, please let us know in the comments section.
Also, keep in mind that this post is not a classic "best of" list, just a collection that shows how amazing the Node community was in 2017! I figured that a big shoutout to the developers who constantly advocate & teach Node would be a great way to say goodbye to this year.
So, here come the proof I promised in the title:
1. We have insanely useful community curated lists:
If you'd like to gain useful knowledge quickly, you can count on the Node community. These lists were created in 2017, and contain so much best practices & shortcuts that you can definitely level up your skills by going through them.
The largest Node.JS best practices list is curated from the top ranked articles and always updated.
Awesome Node.js is an extensive list of delightful Node packages & resources.
The Modern JS Cheatsheet contains knwledge needed to build modern projects.
These lists have over 300 contributors & gained around 50K stars on GitHub!
Also, we recommend to check out these articles written by Yoni Goldberg & Azat Mardan which will help you to become a better developer:
Node.JS production best practices
10 Node.js Best Practices: Enlightenment from the Node Gurus
2. There are actually insightful Case Studies available!
One of the best articles on using Node.js was written by Scott Nonnenberg in April. The author summarized his Node experiences from the past 5 years, discussing basic concepts, architectural issues, testing, the Node ecosystem & the reason why you shouldn't use New Relic.
"I’ve already shared a few stories, but this time I wanted to focus on the ones I learned the hard way. Bugs, challenges, surprises, and the lessons you can apply to your own projects!" - Scott
..
Also, did you know that Node.js Helps NASA to Keep Astronauts Safe? It's hard to come up with something cooler than that.
NASA choose Node.js for the following reasons:
The relative ease of developing data transfer applications with JavaScript, and the familiarity across the organization with the programming language, which keeps development time and costs low.
Node.js’ asynchronous event loop for I/O operations makes it the perfect solution for a cloudbased database system that sees queries from dozens of users who need data immediately.
The Node.js package manager, npm, pairs incredibly well with Docker to create a microservices architecture that allows each API, function and application to operate smoothly and independently.
To learn more, read the full case study!
Also, shoutout to the Node Foundation who started to assemble and distribute these pretty interesting use-case whitepapers on a regular basis!
3. Node.js Authentication & Security was well covered in 2017:
When it comes to building Node.js apps (or any app..) security is crucial to get right. This is the reason why "Your Node.js authentication tutorial is (probably) wrong" written by micaksica got so much attention on HackerNoon.
tl;dr: The author went on a search of Node.js/Express.js authentication tutorials. All of them were incomplete or made a security mistake in some way that can potentially hurt new users. His post explores some common authentication pitfalls, how to avoid them, and what to do to help yourself when your tutorials don’t help you anymore.
If you plan on reading only one security related article (..but why would you do that?!), this is definitely one of the best ones!
..
Also, we recommend to check out the Damn Vulnerable NodeJS Application github page, which aims to demonstrate the OWASP Top 10 Vulnerabilities and guides you on fixing and avoiding these vulnerabilities.
..
Other great articles which were receiving a lot of praise were Securing Node.js RESTful APIs with JSON Web Tokens by Adnan Rahic, and Two-Factor Authentication with Node.js from David Walsh.
4. API development with Node.js has been made even more easy:
One of the main strengths of Node.js is that you can build REST APIs with it in a very efficient way! There are a lot of articles covering that topic, but these were definitely the most popular ones:
RESTful API design with Node.js walks beginners through the whole process in a very thorough, easy to understand way.
Build a Node.js API in Under 30 Minutes achieves the same result, but it uses ES6 as well.
10 Best Practices for Writing Node.js REST APIs (written by us) goes a little further and includes topics like naming your routes, authentication, black-box testing & using proper cache headers for these resources.
5. We're constantly looking under the hood of Node.js.
Luckily, the Node/JS community delivers when you want to go deeper, in fact there were so many interesting deep-dives that it was really hard to pick out the best ones, but one can try! These articles are really insightful:
Understanding Node.js Event-Driven Architecture
What you should know to really understand the Node.js Event Loop
Node.js Streams: Everything you need to know
How JavaScript works: inside the V8 engine + 5 tips on how to write optimized code
ES8 was Released and here are its Main New Features
6 Reasons Why JavaScript’s Async/Await Blows Promises Away (Tutorial)
What were the best articles that peeked under the hood of JS/Node in your opinion? Share them in the comments!
6. Awesome new Tools were made in 2017:
Two of the most hyped tools of the year were Prettier & Fastify!
In case you don't know, prettier is a JavaScript formatter that works by compiling your code to an AST, and then pretty-printing the AST.
The result is good-looking code that is completely consistent no matter who wrote it. This solves the problem of programmers spending a lot of time manually moving around code in their editor and arguing about styles.
Fastify was introduced by Matteo Collina, Node.js core technical commitee member during Node Interactive 2017 in Vancouver.
Fastify is a new web framework inspired by Hapi, Restify and Express. Fastify is built as a general-purpose web framework, but it shines when building extremely fast HTTP APIs that use JSON as the data format.
..just to mention a few.
7. There are Amazing Crash Courses Available for Free
If you'd like to start learning Node, you can count on the commmunity to deliver free, high-quality resources that can speed up your journey!
One particular author - Adnan Rahić - received a huge amount of praise for releasing crash courses for different topics on Medium. Here they are:
A crash course on testing with Node.js
A crash course on Serverless with Node.js
We hope Adnan will continue this series and create crash courses on other areas of Node as well!
8. Miscallaneus Topics are Covered as Well
What do we mean under miscallaneus topics? Well, those are topics that go beyond the "traditional" use cases of Node.js, where the authors describe something interesting & fun they built with it.
For example there were exceptional articles released that used the OpenCV library for either face recognition or just regular object recognition.
Chatbots were a hype topic too, and there was no shortage of blogposts describing how to build them using different languages.
Building A Simple AI Chatbot With Web Speech API And Node.js was one of the most praised articles. In this post Tomomi Imura walked us through building a chat-bot which can be controlled by voice. Yep, it's pretty cool.
We also recommend to check out Developing A Chatbot Using Microsoft's Bot Framework, LUIS And Node.js too, which is the first part of a series dealing with the topic.
What other fun projects did you see? Add them to the comments section!
9. The community can attend great conferences, like Node Interactive!
Node Interactive Vancouver was a major event which provided great opportunities for it's attendees to meet with fellow developers & learn a lot about their favorite subject.
Fortunately every prezentation is available on YouTube, so you can get up-to-date even if you couldn't participate this year (just like us.)
The 10 most watched right now are:
Node.js Performance and Highly Scalable Micro-Services by Chris Bailey
New DevTools Features for JavaScript by Yang Guo
The V8 Engine and Node.js by Franzi Hinkelmann
High Performance JS in V8 by Peter Marshall
The Node.js Event Loop: Not So Single Threaded by Bryan Hughes
Welcome and Node.js Update by Mark Hinkle
Take Your HTTP Server to Ludicrous Speed by Matteo Collina
WebAssembly and the Future of the Web by Athan Reines
High Performance Apps with JavaScript and Rust by Amir Yasin
TypeScript - A Love Tale with JavaScript by Bowden Kelly
Of course this list is just the tip of the iceberg, since there are 54 videos upladed on the Node Foundations' YouTube channel, and most of them are really insightful and fun to watch.
10. Node.js is finally more sought after than Java!
Although Ryan Dahl recently stated in an interview that..
for a certain class of application, which is like, if you're building a server, I can't imagine using anything other than Go.
.. we have no reason to doubt the success of Node.js!
Mikeal Rogers, one of the core organizers of NodeConf, community manager & core contributor at the Node Foundation stated that Node.js will overtake Java within a year in a NewStack interview this summer!
We are now at about 8 million estimated users and still growing at about 100 percent a year. We haven’t passed Java in terms of users yet, but by this time next year at the current growth, we will surpass. - Mikeal.
Mikeal is not alone with his opinion. There is hard data available to prove that Node is becoming more sought after than Java.
According to the data gathered by builtinnode, the demand for Node.js developers has already surpassed the demand for Java devs by the summer of 2017 in the Who is Hiring section of Hacker News!
Since Node was already adopted and is being advocated by the greatest tech companies on Earth, there's no doubt that it will remain a leading technology for many years ahead!
We hope that the Node community will continue to thrive in 2018 as well, and produce a plethora of exellent tools & tutorials.
At RisingStack, we'll keep on advocating & educating Node in 2018 as well, for sure! If you're interested in the best content we produced in 2017, take a look!
The Node.js Community was amazing in 2017! Here's the proof: published first on http://ift.tt/2w7iA1y
0 notes
Text
The Node.js Community was amazing in 2017! Here's the proof:
Let me just start by stating this:
2017 was a great year for the Node.js Community!
Our favorite platform has finally matured to be widely adopted in the enterprise, also, a lot of great features have been merged into the core, like async/await & http2, just to mention a few.
The world runs on node ✨🐢🚀✨ #NodeInteractive http://pic.twitter.com/5PwDC2w1mE
— Franziska Hinkelmann (@fhinkel) October 4, 2017
Not only the developers who contribute to Node make this platform so great, but those who create learning materials around it were also exceptional.
In our final article of 2017, we collected a bunch of longreads which were created by the Node community. We used data from Reddit, Hacker News, Twitter & Medium to search for the most read, most shared & liked stuff out there. We intentionally omitted articles written by RisingStack (except 1, couldn't resist) - if you're interested in those, please visit our top15 of 2017 post!
I'm sure we left a bunch of amazing articles out - so if you'd like to get attention to an exceptional one you read, please let us know in the comments section.
Also, keep in mind that this post is not a classic "best of" list, just a collection that shows how amazing the Node community was in 2017! I figured that a big shoutout to the developers who constantly advocate & teach Node would be a great way to say goodbye to this year.
So, here come the proof I promised in the title:
1. We have insanely useful community curated lists:
If you'd like to gain useful knowledge quickly, you can count on the Node community. These lists were created in 2017, and contain so much best practices & shortcuts that you can definitely level up your skills by going through them.
The largest Node.JS best practices list is curated from the top ranked articles and always updated.
Awesome Node.js is an extensive list of delightful Node packages & resources.
The Modern JS Cheatsheet contains knwledge needed to build modern projects.
These lists have over 300 contributors & gained around 50K stars on GitHub!
Also, we recommend to check out these articles written by Yoni Goldberg & Azat Mardan which will help you to become a better developer:
Node.JS production best practices
10 Node.js Best Practices: Enlightenment from the Node Gurus
2. There are actually insightful Case Studies available!
One of the best articles on using Node.js was written by Scott Nonnenberg in April. The author summarized his Node experiences from the past 5 years, discussing basic concepts, architectural issues, testing, the Node ecosystem & the reason why you shouldn't use New Relic.
"I’ve already shared a few stories, but this time I wanted to focus on the ones I learned the hard way. Bugs, challenges, surprises, and the lessons you can apply to your own projects!" - Scott
..
Also, did you know that Node.js Helps NASA to Keep Astronauts Safe? It's hard to come up with something cooler than that.
NASA choose Node.js for the following reasons:
The relative ease of developing data transfer applications with JavaScript, and the familiarity across the organization with the programming language, which keeps development time and costs low.
Node.js’ asynchronous event loop for I/O operations makes it the perfect solution for a cloudbased database system that sees queries from dozens of users who need data immediately.
The Node.js package manager, npm, pairs incredibly well with Docker to create a microservices architecture that allows each API, function and application to operate smoothly and independently.
To learn more, read the full case study!
Also, shoutout to the Node Foundation who started to assemble and distribute these pretty interesting use-case whitepapers on a regular basis!
3. Node.js Authentication & Security was well covered in 2017:
When it comes to building Node.js apps (or any app..) security is crucial to get right. This is the reason why "Your Node.js authentication tutorial is (probably) wrong" written by micaksica got so much attention on HackerNoon.
tl;dr: The author went on a search of Node.js/Express.js authentication tutorials. All of them were incomplete or made a security mistake in some way that can potentially hurt new users. His post explores some common authentication pitfalls, how to avoid them, and what to do to help yourself when your tutorials don’t help you anymore.
If you plan on reading only one security related article (..but why would you do that?!), this is definitely one of the best ones!
..
Also, we recommend to check out the Damn Vulnerable NodeJS Application github page, which aims to demonstrate the OWASP Top 10 Vulnerabilities and guides you on fixing and avoiding these vulnerabilities.
..
Other great articles which were receiving a lot of praise were Securing Node.js RESTful APIs with JSON Web Tokens by Adnan Rahic, and Two-Factor Authentication with Node.js from David Walsh.
4. API development with Node.js has been made even more easy:
One of the main strengths of Node.js is that you can build REST APIs with it in a very efficient way! There are a lot of articles covering that topic, but these were definitely the most popular ones:
RESTful API design with Node.js walks beginners through the whole process in a very thorough, easy to understand way.
Build a Node.js API in Under 30 Minutes achieves the same result, but it uses ES6 as well.
10 Best Practices for Writing Node.js REST APIs (written by us) goes a little further and includes topics like naming your routes, authentication, black-box testing & using proper cache headers for these resources.
5. We're constantly looking under the hood of Node.js.
Luckily, the Node/JS community delivers when you want to go deeper, in fact there were so many interesting deep-dives that it was really hard to pick out the best ones, but one can try! These articles are really insightful:
Understanding Node.js Event-Driven Architecture
What you should know to really understand the Node.js Event Loop
Node.js Streams: Everything you need to know
How JavaScript works: inside the V8 engine + 5 tips on how to write optimized code
ES8 was Released and here are its Main New Features
6 Reasons Why JavaScript’s Async/Await Blows Promises Away (Tutorial)
What were the best articles that peeked under the hood of JS/Node in your opinion? Share them in the comments!
6. Awesome new Tools were made in 2017:
Two of the most hyped tools of the year were Prettier & Fastify!
In case you don't know, prettier is a JavaScript formatter that works by compiling your code to an AST, and then pretty-printing the AST.
The result is good-looking code that is completely consistent no matter who wrote it. This solves the problem of programmers spending a lot of time manually moving around code in their editor and arguing about styles.
Fastify was introduced by Matteo Collina, Node.js core technical commitee member during Node Interactive 2017 in Vancouver.
Fastify is a new web framework inspired by Hapi, Restify and Express. Fastify is built as a general-purpose web framework, but it shines when building extremely fast HTTP APIs that use JSON as the data format.
..just to mention a few.
7. There are Amazing Crash Courses Available for Free
If you'd like to start learning Node, you can count on the commmunity to deliver free, high-quality resources that can speed up your journey!
One particular author - Adnan Rahić - received a huge amount of praise for releasing crash courses for different topics on Medium. Here they are:
A crash course on testing with Node.js
A crash course on Serverless with Node.js
We hope Adnan will continue this series and create crash courses on other areas of Node as well!
8. Miscallaneus Topics are Covered as Well
What do we mean under miscallaneus topics? Well, those are topics that go beyond the "traditional" use cases of Node.js, where the authors describe something interesting & fun they built with it.
For example there were exceptional articles released that used the OpenCV library for either face recognition or just regular object recognition.
Chatbots were a hype topic too, and there was no shortage of blogposts describing how to build them using different languages.
Building A Simple AI Chatbot With Web Speech API And Node.js was one of the most praised articles. In this post Tomomi Imura walked us through building a chat-bot which can be controlled by voice. Yep, it's pretty cool.
We also recommend to check out Developing A Chatbot Using Microsoft's Bot Framework, LUIS And Node.js too, which is the first part of a series dealing with the topic.
What other fun projects did you see? Add them to the comments section!
9. The community can attend great conferences, like Node Interactive!
Node Interactive Vancouver was a major event which provided great opportunities for it's attendees to meet with fellow developers & learn a lot about their favorite subject.
Fortunately every prezentation is available on YouTube, so you can get up-to-date even if you couldn't participate this year (just like us.)
The 10 most watched right now are:
Node.js Performance and Highly Scalable Micro-Services by Chris Bailey
New DevTools Features for JavaScript by Yang Guo
The V8 Engine and Node.js by Franzi Hinkelmann
High Performance JS in V8 by Peter Marshall
The Node.js Event Loop: Not So Single Threaded by Bryan Hughes
Welcome and Node.js Update by Mark Hinkle
Take Your HTTP Server to Ludicrous Speed by Matteo Collina
WebAssembly and the Future of the Web by Athan Reines
High Performance Apps with JavaScript and Rust by Amir Yasin
TypeScript - A Love Tale with JavaScript by Bowden Kelly
Of course this list is just the tip of the iceberg, since there are 54 videos upladed on the Node Foundations' YouTube channel, and most of them are really insightful and fun to watch.
10. Node.js is finally more sought after than Java!
Although Ryan Dahl recently stated in an interview that..
for a certain class of application, which is like, if you're building a server, I can't imagine using anything other than Go.
.. we have no reason to doubt the success of Node.js!
Mikeal Rogers, one of the core organizers of NodeConf, community manager & core contributor at the Node Foundation stated that Node.js will overtake Java within a year in a NewStack interview this summer!
We are now at about 8 million estimated users and still growing at about 100 percent a year. We haven’t passed Java in terms of users yet, but by this time next year at the current growth, we will surpass. - Mikeal.
Mikeal is not alone with his opinion. There is hard data available to prove that Node is becoming more sought after than Java.
According to the data gathered by builtinnode, the demand for Node.js developers has already surpassed the demand for Java devs by the summer of 2017 in the Who is Hiring section of Hacker News!
Since Node was already adopted and is being advocated by the greatest tech companies on Earth, there's no doubt that it will remain a leading technology for many years ahead!
We hope that the Node community will continue to thrive in 2018 as well, and produce a plethora of exellent tools & tutorials.
At RisingStack, we'll keep on advocating & educating Node in 2018 as well, for sure! If you're interested in the best content we produced in 2017, take a look!
The Node.js Community was amazing in 2017! Here's the proof: published first on http://ift.tt/2fA8nUr
0 notes
Text
Node.js'de Düğüm-ChakraCore ve VM | Mesut Şener
Node.js'de Düğüm-ChakraCore ve VM
Node.js'de Düğüm-ChakraCore ve VM Node.js başlatıldığında, cihaz manzarası daha basitti ve tek bir JavaScript VM kullanarak Node.js'nin odaklanmasını hızlandırdı. Günümüzde, her biri farklı kaynak kısıtlamaları olan çeşitli aygıt türlerinde bir artış var. Bu cihaz bağlamında, Node.js'de VM tarafsızlığının etkinleştirilmesi ve geliştiricilere çeşitli cihaz türleri ve kısıtlamalar arasında seçim yapılması, Node.js ekosisteminin büyümesine devam etmek için önemli adımlar olduğuna inanıyoruz. Düğüm-ÇakraCore geçen yoldan bu yolda Node.js'yi yeni bir platform olan Windows 10 IoT Core'a getirerek başladı . Node.js'in geleceği için gidişatı çizdiğimiz ve Node.js'nin her yerde görevini teşvik ettiğimiz için Node.js API prototiplerinden başlayarak VM Tarafsızlığı'na yönelik son gelişmeleri ve Node-jp'nin prototiplerine yönelik ilerlemeleri duyurmaktan heyecan duyuyoruz. ChakraCore.
VM Tarafsızlığı davası
Node.js'yi diğer VM'lere bağlamaya çalışan bu artan proje eğilimi, ileride Node.js'in VM tarafsız olması gerekip gerekmeyeceğine ilişkin bir topluluk tartışmasına başladı . Bu, VM Zirvesi'nin bu yılın VM Zirvesi'ndeki teknik sorunların daha iyi anlaşılmasına yönelik bir girişim olduğuna yol açtı . VM Tarafsızlığı sağlama. VM Tarafsızlığı, Node.js'yi herhangi bir platform, aygıt veya iş yükü için yüksek oranda optimize edilmiş her yerde bulunan bir uygulama çerçevesi olarak öngörür. Düğüm Çekirdeğinin, açık standartlar ve API'ler üzerinden güç sağlayan JS Altyapısına tarafsız olması ve Node.js ile kendisine yetki veren VM arasında daha resmi bir arayüz sağlayan Node.js durumunu açıklar. VM ile nötr bir dünyada, Node.js ekosistemi, özellikle yerel modüller, çeşitli farklı cihazlar ve iş yükleri için optimize edilmiş farklı JS VM'ler üzerinde kesintisiz olarak çalışmaya devam edecektir. VM Tarafsızlığının faydaları çok katlıdır:
Erişim / Ubiquity: Node.js'in yüksek optimizasyonla yeni cihazları ve iş yüklerini hedeflemesine izin verir.
Geliştirici Verimliliği : Düğüm ekosisteminin erişimini ve kodları daha çok aygıtı ve iş yükünü hedeflemek için yeniden kullanabilme yeteneğini genişleterek maliyet tasarrufu sağladığı için geliştiriciler için yararlıdır.
Standart çabalar : Varolan Node.js çatallarının multi-VM çabalarını standartlaştırır
Node.js API'sı (NAPI)
Node.js API (NAPI) bir olan topluluk projesidir yerli modül geliştiriciler için kararlı Düğüm API sağlamak amacı ile, ChakraCore ve diğerleri ile birlikte, API çalışma grubu tarafından tahrik ediliyor. NAPI, farklı Düğüm sürümlerinde ve ayrıca farklı Düğüm VM'lerinde ABI uyumluluk garantileri sağlamayı amaçlıyor - NAPI etkin yerel modüllerin, yeniden derlemeler olmadan Node.js'nin farklı sürümleri ve lezzetlerinde çalışmasına izin veriyor. NAPI, VM Tarafsızlığına doğru atılmış bir adım taşıdır. Yerel modüller için NAPI resmen kullanılabilir olduktan sonra, VM Tarafsızlığını elde etmek ve düğümün birden çok JavaScript motorunu sorunsuz şekilde desteklemesini sağlamak için Düğüm çekirdeği içinde kullanılabilir. Bugün NodeInteractive Austin 2016'da çalışan bir NAPI prototipinin ilk demosunu kontrol edebilirsiniz !
Düğüm-ChakraKüre
Node çabalarını desteklemenin yanı sıra, Node-ChakraCore çapraz platform desteği ve teşhis yeniliği konusunda ilerleme kaydediyor.
Çapraz platform desteği hakkında güncelleme (Linux ve macOS)
Düğüm-Çakra Kavşağı'na çapraz platform desteği getirmek baştan beri yol haritamızda önemli bir hedeftir. NodeSummit'te Linux üzerinde Node-ChakraCore için deneysel destek duyurduk ve bugün aynı deneysel desteği macOS'ta da sunuyoruz.
MacOS'ta Node-ChakraCore ile http-server örneğini çalıştırma
Bu erken deneysel yapılar, bazı sentetik testlerin yanı sıra Node.js birim testleri için de doğrulanmıştır. Biz daha Düğüm-ChakraCore sertleştirme yardım arayan, bu yüzden bu oluşturur dışarı çalışırken hatalar haline çalıştırırsanız, bize bildirmek lütfen olan sorunlar sayfasında . Performans, devam eden ChakraCore motorunda devam eden yatırımlarla devam eden bir çalışmadır. Bu konuda @ChakraCore ekibinden güncellemeler için lütfen bizi takip edin .
Ters Devamlı Zaman-Seyahat Hata Ayıklama
Düğüm-ÇakraCore projesinde yer alan bizim için en önemli iç rehber ilkelerden biri, Node.js ekosisteminin geliştirilmesine yardımcı olmak için yenilik getirmektir. Bu bağlamda, bu yılın başlarında VSCode'u kullanarak Zaman-Seyahat hata ayıklamasının bir önizlemesini inceledik. Bu özellik, geliştiricilerin çalışan bir Düğüm işleminin izini yakalamasına ve ardından VSCode'un içindeki kodu yürütmeyi zamana geri adım atarak görselleştirmesine olanak tanır. "Geri İleri" işlevselliği, geliştiricilerin kod yürütme yolunu anlamalarına değil, aynı zamanda tipik hata ayıklayıcı kullanıcı arayüzü kullanımlarını kullanarak çalışma zamanı içeriğini incelemelerine olanak tanır. Bugün, Windows'daki VSCode'daki Time-Travel Debugging'in daha iyi güvenilirlik, performans ve "R everse Devam " olarak adlandırılan yeni bir özellikleBeta kilometre taşına ulaştığını duyurduk . Bu yeni özellik "Hata Ayıklama Devam et ", geriye doğru gider ve sadece bir TTD izini hata ayıklarken kullanılabilir.
Step Back ve Ters Devam ile Time-Travel hata ayıklamasını gösteren VSCode
Buna ek olarak, deneysel Linux ve macOS desteğimize ilişkin Time-Travel hata ayıklamasının bir önizlemesini de sunuyoruz.
gece kondular
Node.js oluşturma sistemi artık Gecelik Node-ChakraCore yapıları üretmeye başladı. Kararlı kilometre taşı yapıları Düğüm-ÇakraCore'un Github'daki serbest bırakma sayfasında yayınlanmaya devam edecek . Node.js gece kurulum sayfasına gidin ve deneyin.
Chakracore-nightly buildini gösteren nodejs.org sayfasını indirin
Sıradaki ne?
Kısa vadede ana odak noktamız, NAPI projesini ve VM Tarafsızlık hedeflerini ilerletmek için toplulukla birlikte çalışmaya devam etmektir. Çapraz platform senaryoları için performans geliştirmeleri üzerinde de çalışıyoruz. Bu işle ilgili güncellemeler için ayarlanmış olmaya devam etmek için @ChakraCore'u Twitter'da takip edin.
Katılın
Node-ChakraCore'u kendi projeleri için deneyen insanlardan her zaman duymak isteriz. Bugünkü güncelleme, seçtiğiniz platformda Node-ChakraCore'u kullanabilmenizi her zamankinden daha kolay hale getiriyor. Bir göz atın talimatlar mevcut uygulamalar ile Düğüm CharkraCore ve Zaman Gezi hata ayıklama denemek ve bizim üzerinde sorun haline çalıştırırsanız bize bildirmek için sorunlar sayfasında . Node.js API'sı çabalarıyla daha fazla ilgilenmek isterseniz , bunlara dahil olmanın bazı yolları şunlardır :
Yerli bir modülü ABI'ya uyumlu API'leri kullanacak şekilde dönüştürün ve dönüşüm ve performans ile ilgili sorunları bildirin;
Düğüm çatalı için ABI sabit API'leri bağlayın ve boşluklar olup olmadığını bize bildirin;
Gözden yol haritası ve bu projeyi hızlandırmaya yardımcı olabilir nasıl bakın.
Node.js platformu için VM tarafsız bir geleceğe doğru ilerlemekten heyecan duyuyoruz ve düşündüğünüzü duymak için sabırsızlanıyorum! - Arunesh Chandra , Kıdemli Program Müdürü, ChakraCore Etiket :#Announcements, #Chakra, #ChakraCore, #CrossPlatformInteroperabilit, #Debugging, #Neutrality, #Node.Js, #TimeTravel, #VM, #YJavaScript Yazar: Mesut Şener kaynak : https://mesutsener.com/node-jsde-dugum-cakracore-vm/
0 notes
Text
#NodeInteractive is expanding this year to focus on more technologies in the JavaScript ecosystem 🎉 Given the expansion, we have a new name: JS Interactive 😀 #JSInteractive Here's what to expect: https://t.co/IQXybehAmp
#NodeInteractive is expanding this year to focus on more technologies in the JavaScript ecosystem 🎉 Given the expansion, we have a new name: JS Interactive 😀 #JSInteractive Here's what to expect: https://t.co/IQXybehAmp
— Node.js (@nodejs) February 5, 2018
nodejs
0 notes
Photo

Great #nodeinteractive conference #ibm #linuxfoundation #portland #oregon (at Hilton Portland & Executive Tower)
0 notes
Photo
#NodeInteractive is expanding this year to focus on more technologies in the JavaScript ecosystem 🎉 Given the expansion, we have a new name: JS Interactive 😀 #JSInteractive Here's what to expect: https://t.co/IQXybehAmp #javascript #angular #angularjs #node #react #vuejs #js
0 notes
Text
Great keynote from @fhinkel at #NodeInteractive on what the @v8js team is doing to continue to support #nodejs 💜🎉https://t.co/FrVxYQr4au https://t.co/siAMQnaGhU
Great keynote from @fhinkel at #NodeInteractive on what the @v8js team is doing to continue to support #nodejs 💜🎉https://t.co/FrVxYQr4au http://pic.twitter.com/siAMQnaGhU
— Node.js (@nodejs) December 4, 2017
nodejs
0 notes
Text
Great keynote from @fhinkel at #NodeInteractive on what the @v8js team is doing to continue to support #nodejs 💜🎉https://t.co/FrVxYQr4au https://t.co/CcxGzbVkjP
Great keynote from @fhinkel at #NodeInteractive on what the @v8js team is doing to continue to support #nodejs 💜🎉https://t.co/FrVxYQr4au http://pic.twitter.com/CcxGzbVkjP
— Node.js (@nodejs) November 23, 2017
nodejs
0 notes