SlideShare a Scribd company logo
Index 2018   node.js what's next
•
•
•
●
●
●
●
●
●
●
●
●
●
•
•
•
•
•
•
•
•
•
•
•
•
•
https://nodejs.org
https://github.com/nodejs
https://foundation.nodejs.org
https://github.com/nodejs/TSC/blob/master/Strategic-Initiatives.md
https://github.com/nodejs/community-committee/blob/master/STRATEGIC-INITIATIVES.md
https://nodejs.org/calendar
Index 2018   node.js what's next
•
•
•
•
•
•
•
•
Index 2018   node.js what's next
Index 2018   node.js what's next
https://github.com/nodejs/node/blob/master/BUILDING.md
Index 2018   node.js what's next
https://github.com/nodejs/benchmarking
Index 2018   node.js what's next
●
●
●
●
●
https://github.com/nodejs/diagnostics/issues/121
Index 2018   node.js what's next
Index 2018   node.js what's next
Index 2018   node.js what's next
•
•
•
•
•
•
•
https://nghttp2.org/
•
•
•
•
•
•
• --experimental-modules
https://nodejs.org/api/esm.html
export function test() {
console.log('Hello');
}
import { test } from
'./helloTest.mjs';
test();
module.exports = function() {
console.log('Hello');
}
const test =
require('./helloTest.js');
test();
#include <node_api.h>
napi_value RunCallback(napi_env env, const napi_callback_info info) {
napi_status status;
size_t argc = 1;
napi_value args[1];
status = napi_get_cb_info(env, info, &argc, args, nullptr, nullptr);
napi_value cb = args[0];
napi_value argv[1];
status = napi_create_string_utf8(env, "hello world", NAPI_AUTO_LENGTH, argv);
napi_value global;
status = napi_get_global(env, &global);
napi_value result;
status = napi_call_function(env, global, cb, 1, argv, &result);
return nullptr;
}
https://nodejs.org/dist/latest/docs/api/n-api.html
https://github.com/nodejs/node-addon-api
•
•
•
•
https://medium.com/the-node-js-collection/node-js-errors-
changes-you-need-to-know-about-dc8c82417f65
•
function init(asyncId, type, triggerAsyncId, resource) { }
function before(asyncId) { }
function after(asyncId) { }
function destroy(asyncId) { }
function promiseResolve(asyncId) { }
const asyncHook = async_hooks.createHook({ init, before, after, destroy, promiseResolve });
asyncHook.enable();
asyncHook.disable();
https://nodejs.org/api/async_hooks.html
FSEVENTWRAP, FSREQWRAP, GETADDRINFOREQWRAP, GETNAMEINFOREQWRAP, HTTPPARSER,
JSSTREAM, PIPECONNECTWRAP, PIPEWRAP, PROCESSWRAP, QUERYWRAP, SHUTDOWNWRAP,
SIGNALWRAP, STATWATCHER, TCPCONNECTWRAP, TCPSERVER, TCPWRAP, TIMERWRAP, TTYWRAP,
UDPSENDWRAP, UDPWRAP, WRITEWRAP, ZLIB, SSLCONNECTION, PBKDF2REQUEST,
RANDOMBYTESREQUEST, TLSWRAP, Timeout, Immediate, TickObject
•
•
•
•
• https://github.com/nodejs/node/pull/18297
•
•
•
•
•
•
https://github.com/nodejs/worker
Index 2018   node.js what's next
Index 2018   node.js what's next
Index 2018   node.js what's next
•
•
•
•
•
•
•
•
•
•
•
•
•
•
•
•
•
•
Index 2018   node.js what's next

More Related Content

PPTX
Testing With OutSystems
PPTX
Git Merge, Resets and Branches
PDF
Django Third party packages
PDF
GitHub Pull Request Builder for Drupal
PDF
공짜점심먹기
PPTX
Using github development process in your company
PPTX
GitHub Actions for 5 minutes
PDF
Building APIs using Go
Testing With OutSystems
Git Merge, Resets and Branches
Django Third party packages
GitHub Pull Request Builder for Drupal
공짜점심먹기
Using github development process in your company
GitHub Actions for 5 minutes
Building APIs using Go

What's hot (8)

PDF
Sprachsteuerung mit dem Google Assistant – Add a new User Interface to your P...
PDF
COSCUP Scouter: Face recognizer retrieves your Github contribution
PPTX
Awesome Git Workflow for Agencies and Teams
PPTX
Continuously Break The Android
PPTX
(Open Hack Night 2014) GitHub Tutorial
KEY
Git Magic: Versioning Files like a Boss
ODP
Eclipse Buildship JUG Hamburg
PPTX
Microsoft azure pipeline + Docker + Amazon s3 + Jekyll + github
Sprachsteuerung mit dem Google Assistant – Add a new User Interface to your P...
COSCUP Scouter: Face recognizer retrieves your Github contribution
Awesome Git Workflow for Agencies and Teams
Continuously Break The Android
(Open Hack Night 2014) GitHub Tutorial
Git Magic: Versioning Files like a Boss
Eclipse Buildship JUG Hamburg
Microsoft azure pipeline + Docker + Amazon s3 + Jekyll + github
Ad

Similar to Index 2018 node.js what's next (20)

PDF
Node Summit 2016: Building your DevOps for Node.js
PPTX
Introducing Node.js in an Oracle technology environment (including hands-on)
PPTX
Nodejs web service for starters
PDF
How to Enterprise Node
PDF
InterConnect2016: WebApp Architectures with Java and Node.js
PDF
Getting Started with Node.js
PPTX
Introduction to node.js GDD
PDF
How to make a high-quality Node.js app, Nikita Galkin
PPTX
Introduction to node.js
PPTX
Introduction to Node (15th May 2017)
PDF
NodeJS for Beginner
PDF
FITC - Node.js 101
PDF
NODE JS OC Meetup 1
PDF
Learning Nodejs For Net Developers Harry Cummings
PDF
Node.js 101 with Rami Sayar
PPTX
Node js meetup
PPTX
NodeJs
PPT
Node.js what's next (Index 2018)
PPTX
Node.js
PPTX
Node.js Getting Started &amd Best Practices
Node Summit 2016: Building your DevOps for Node.js
Introducing Node.js in an Oracle technology environment (including hands-on)
Nodejs web service for starters
How to Enterprise Node
InterConnect2016: WebApp Architectures with Java and Node.js
Getting Started with Node.js
Introduction to node.js GDD
How to make a high-quality Node.js app, Nikita Galkin
Introduction to node.js
Introduction to Node (15th May 2017)
NodeJS for Beginner
FITC - Node.js 101
NODE JS OC Meetup 1
Learning Nodejs For Net Developers Harry Cummings
Node.js 101 with Rami Sayar
Node js meetup
NodeJs
Node.js what's next (Index 2018)
Node.js
Node.js Getting Started &amd Best Practices
Ad

More from Michael Dawson (18)

PDF
Index 2018 talk to your code
PPTX
N api - node interactive 2017
PDF
N api-node summit-2017-final
PDF
Accelerate your digital transformation
PDF
Ask us anything v9
PDF
Node.js Community Benchmarking WG update
PDF
Cascon intro
PDF
A294 fips support in node
PDF
A295 nodejs-knowledge-accelerator
PDF
A301 ctu madrid2016-monitoring
PDF
Post mortem talk - Node Interactive EU
PDF
Update from-build-workgroup
PDF
Node fips
PDF
Micro app-framework - NodeLive Boston
PDF
Node liveboston welcome
PDF
Micro app-framework
PDF
Node home automation with Node.js and MQTT
PDF
Java one 2015 - v1
Index 2018 talk to your code
N api - node interactive 2017
N api-node summit-2017-final
Accelerate your digital transformation
Ask us anything v9
Node.js Community Benchmarking WG update
Cascon intro
A294 fips support in node
A295 nodejs-knowledge-accelerator
A301 ctu madrid2016-monitoring
Post mortem talk - Node Interactive EU
Update from-build-workgroup
Node fips
Micro app-framework - NodeLive Boston
Node liveboston welcome
Micro app-framework
Node home automation with Node.js and MQTT
Java one 2015 - v1

Recently uploaded (20)

PDF
2025 Textile ERP Trends: SAP, Odoo & Oracle
PDF
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
PDF
Wondershare Filmora 15 Crack With Activation Key [2025
PDF
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
PPT
Introduction Database Management System for Course Database
PDF
How to Migrate SBCGlobal Email to Yahoo Easily
PPTX
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
PPTX
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
PDF
Design an Analysis of Algorithms II-SECS-1021-03
PPTX
Transform Your Business with a Software ERP System
PDF
Designing Intelligence for the Shop Floor.pdf
PDF
Upgrade and Innovation Strategies for SAP ERP Customers
PDF
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
PDF
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
PDF
medical staffing services at VALiNTRY
PDF
Design an Analysis of Algorithms I-SECS-1021-03
PPTX
VVF-Customer-Presentation2025-Ver1.9.pptx
PDF
Odoo Companies in India – Driving Business Transformation.pdf
PPTX
ai tools demonstartion for schools and inter college
PDF
Digital Systems & Binary Numbers (comprehensive )
2025 Textile ERP Trends: SAP, Odoo & Oracle
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
Wondershare Filmora 15 Crack With Activation Key [2025
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
Introduction Database Management System for Course Database
How to Migrate SBCGlobal Email to Yahoo Easily
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
Design an Analysis of Algorithms II-SECS-1021-03
Transform Your Business with a Software ERP System
Designing Intelligence for the Shop Floor.pdf
Upgrade and Innovation Strategies for SAP ERP Customers
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
medical staffing services at VALiNTRY
Design an Analysis of Algorithms I-SECS-1021-03
VVF-Customer-Presentation2025-Ver1.9.pptx
Odoo Companies in India – Driving Business Transformation.pdf
ai tools demonstartion for schools and inter college
Digital Systems & Binary Numbers (comprehensive )

Index 2018 node.js what's next