@@ -14,7 +14,12 @@ on August 5th 2021.
14
14
They will be updated regularly and will be reviewed by the next-10 team
15
15
and the TSC on a 6-month basis.
16
16
17
- ## Modern HTTP
17
+
18
+ Version from the [ mini-summit] ( https://github.com/nodejs/next-10/issues/1 ) on October 1st 2022.
19
+
20
+ ## Modern HTTP
21
+
22
+ _ Present in: 2021_
18
23
19
24
Base HTTP support is a key component of modern cloud-native applications
20
25
and built-in support was part of what made Node.js a success in the first
@@ -26,6 +31,8 @@ implementations of different versions concurrently.
26
31
27
32
## Suitable types for end-users
28
33
34
+ _ Present in: 2021_
35
+
29
36
Using typings with JavaScript can allow a richer experience when using Visual
30
37
Studio Code (or any other IDEs) environments, more complete documentation
31
38
of APIs and the ability to identify and resolve errors earlier in the
@@ -37,6 +44,8 @@ to ensure there are good typings available for the public Node.js APIs.
37
44
38
45
## Documentation
39
46
47
+ _ Present in: 2021_
48
+
40
49
The current documentation is great for experienced developers or people
41
50
who are aware of what they are looking for. On the other hand, for
42
51
beginners this documentation can be quite hard to read and finding the
@@ -47,14 +56,19 @@ path for newcomers.
47
56
48
57
## WebAssembly
49
58
59
+ _ Present in: 2021_
60
+
50
61
The use of WebAssembly has been growing over the last few years.
51
62
To ensure Node.js continues to be part of solutions where a
52
63
subset of the solution needs the performance that WebAssembly can
53
64
deliver, Node.js must provide good support for running
54
65
WebAssembly components along with the JavaScript that makes up the rest
55
66
of the solution. This includes implementations of “host” APIs like WASI.
56
67
57
- ## ESM
68
+
69
+ ## ES Modules (ESM)
70
+
71
+ _ Present in: 2021_
58
72
59
73
The CommonJS module system was one of the key components that led to the success
60
74
of Node.js in its first 10 years. ESM is the standard that has been adopted as
@@ -71,6 +85,8 @@ of choice and to ensure its continued growth for the next 10 years.
71
85
72
86
## Observability
73
87
88
+ _ Present in: 2021_
89
+
74
90
The ability to investigate and resolve problems that occur in applications
75
91
running in production is crucial for organizations. Tools that allow
76
92
people to observe the current and past operation of the application are
@@ -84,34 +100,6 @@ applications on top of the runtime. In addition, it is also important to clearly
84
100
document the use cases, problem determination methods and best
85
101
practices for those tools.
86
102
87
- ## Permissions/policies/security model
88
-
89
- Organizations will only choose technologies that allow them to sufficiently
90
- manage risk in their production deployments. For Node.js to
91
- continue its growth in product/enterprise deployments we need to ensure
92
- that we help them manage that risk. We must have a well-documented
93
- security model so that consumers understand what threats are/are
94
- not addressed by the Node.js runtime. We also need to provide
95
- functions/features which help them limit attack surfaces even if it does
96
- not result in 100% protection as this will still help organizations
97
- manage their overall risk level.
98
-
99
- ## Better multithreaded support
100
-
101
- Today's servers support multiple threads of concurrent execution.
102
- Node.js deployments must be able to make full and efficient
103
- use of the available resources. The right answer is often to use
104
- technologies like containers to run multiple single threaded Node.js
105
- instances on the same server. However, there are important use cases
106
- where a single Node.js instance needs to make use of multiple threads
107
- to achieve a performant and efficient implementation. In addition,
108
- even when a Node.js instance only needs to consume a single thread to
109
- complete its work there can be issues. If that work is long running,
110
- blocking the event loop will interfere with other supporting work like
111
- metrics gathering and health checks. Node.js
112
- must provide good support for using multiple threads
113
- to ensure the continued growth and success of Node.js.
114
-
115
103
## Single Executable Applications
116
104
117
105
Node.js often loses out to other runtimes/languages in cases where
@@ -121,3 +109,31 @@ components/approaches for doing this, they need to be better
121
109
documented and evangelized so that this is not seen as a barrier
122
110
for using Node.js in these situations. This is important to support
123
111
the expansion of where/when Node.js is used in building solutions.
112
+
113
+ ## Serverless
114
+
115
+ Serverless is a cloud computing model where the cloud provider manages the underlying
116
+ infrastructure and automatically allocates resources as needed. Developers only need to
117
+ focus on writing code for specific functions, which are executed as individual units of
118
+ work in response to events. Node.js is one of the main technology used by developers in
119
+ this field therefore it is crucial for us to provide a great solution.
120
+
121
+ ## Small footprint
122
+
123
+ Small software footprints refer to software that has a minimal impact on system resources
124
+ such as memory and processing power. This can be achieved through various methods such as
125
+ optimizing code, reducing the number of dependencies, or using lightweight frameworks. Smaller
126
+ footprints can lead to faster startup times, reduced memory usage, and improved overall
127
+ system performance. This is fundamental for Node.js to be a lightweight proposition inside
128
+ the ecosystem as it is used across a wild variety of projects, from web application to IoT
129
+ and serverless.
130
+
131
+ ## Developers-first DX
132
+
133
+ Developer experience (DX) refers to the overall experience a developer has when
134
+ working with a software development platform, framework, or tool. It encompasses
135
+ all aspects of the developer's interactions with the system, from installation
136
+ and configuration to writing code and debugging. A good DX prioritizes ease of use,
137
+ efficiency, and productivity, and can lead to faster development times, higher quality
138
+ code, and greater developer satisfaction. Factors that can impact DX include
139
+ documentation, community support, testing tools, and integration with other systems.
0 commit comments