]> gerrit.simantics Code Review - simantics/district.git/blob - org.simantics.maps.server/node/node-v4.8.0-win-x64/README.md
Adding integrated tile server
[simantics/district.git] / org.simantics.maps.server / node / node-v4.8.0-win-x64 / README.md
1 # Node.js
2
3 [![Gitter](https://badges.gitter.im/Join Chat.svg)](https://gitter.im/nodejs/node?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/29/badge)](https://bestpractices.coreinfrastructure.org/projects/29)
4
5 Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine. Node.js
6 uses an event-driven, non-blocking I/O model that makes it lightweight and
7 efficient. The Node.js package ecosystem, [npm][], is the largest ecosystem of
8 open source libraries in the world.
9
10 The Node.js project is supported by the
11 [Node.js Foundation](https://nodejs.org/en/foundation/). Contributions,
12 policies and releases are managed under an
13 [open governance model](./GOVERNANCE.md). We are also bound by a
14 [Code of Conduct](./CODE_OF_CONDUCT.md).
15
16 If you need help using or installing Node.js, please use the
17 [nodejs/help](https://github.com/nodejs/help) issue tracker.
18
19 ## Resources for Newcomers
20
21 ### Official Resources
22
23 * [Website][]
24 * [Node.js Help][]
25 * [Contributing to the project][]
26 * IRC (node core development): [#node-dev on chat.freenode.net][]
27
28 ### Unofficial Resources
29
30 * IRC (general questions): [#node.js on chat.freenode.net][]. Please see
31 <http://nodeirc.info/> for more information regarding the `#node.js` IRC
32 channel.
33
34 _Please note that unofficial resources are neither managed by (nor necessarily
35 endorsed by) the Node.js TSC/CTC. Specifically, such resources are not
36 currently covered by the [Node.js Moderation Policy][] and the selection and
37 actions of resource operators/moderators are not subject to TSC/CTC oversight._
38
39 ## Release Types
40
41 The Node.js project maintains multiple types of releases:
42
43 * **Current**: Released from active development branches of this repository,
44   versioned by [SemVer](http://semver.org/) and signed by a member of the
45   [Release Team](#release-team).
46   Code for Current releases is organized in this repository by major version
47   number, For example: [v4.x](https://github.com/nodejs/node/tree/v4.x).
48   The major version number of Current releases will increment every 6 months
49   allowing for breaking changes to be introduced. This happens in April and
50   October every year. Current release lines beginning in October each year have
51   a maximum support life of 8 months. Current release lines beginning in April
52   each year will convert to LTS (see below) after 6 months and receive further
53   support for 30 months.
54 * **LTS**: Releases that receive Long-term Support, with a focus on stability
55   and security. Every second Current release line (major version) will become an
56   LTS line and receive 18 months of _Active LTS_ support and a further 12
57   months of _Maintenance_. LTS release lines are given alphabetically
58   ordered codenames, beginning with v4 Argon. LTS releases are less frequent
59   and will attempt to maintain consistent major and minor version numbers,
60   only incrementing patch version numbers. There are no breaking changes or
61   feature additions, except in some special circumstances. More information
62   can be found in the [LTS README](https://github.com/nodejs/LTS/).
63 * **Nightly**: Versions of code in this repository on the current Current
64   branch, automatically built every 24-hours where changes exist. Use with
65   caution.
66
67 ## Download
68
69 Binaries, installers, and source tarballs are available at
70 <https://nodejs.org>.
71
72 **Current** and **LTS** releases are available at
73 <https://nodejs.org/download/release/>, listed under their version strings.
74 The [latest](https://nodejs.org/download/release/latest/) directory is an
75 alias for the latest Current release. The latest LTS release from an LTS
76 line is available in the form: latest-_codename_. For example:
77 <https://nodejs.org/download/release/latest-argon>
78
79 **Nightly** builds are available at
80 <https://nodejs.org/download/nightly/>, listed under their version
81 string which includes their date (in UTC time) and the commit SHA at
82 the HEAD of the release.
83
84 **API documentation** is available in each release and nightly
85 directory under _docs_. <https://nodejs.org/api/> points to the API
86 documentation of the latest stable version.
87
88 ### Verifying Binaries
89
90 Current, LTS and Nightly download directories all contain a _SHASUM256.txt_
91 file that lists the SHA checksums for each file available for
92 download.
93
94 The _SHASUM256.txt_ can be downloaded using curl.
95
96 ```console
97 $ curl -O https://nodejs.org/dist/vx.y.z/SHASUMS256.txt
98 ```
99
100 To check that a downloaded file matches the checksum, run
101 it through `sha256sum` with a command such as:
102
103 ```console
104 $ grep node-vx.y.z.tar.gz SHASUMS256.txt | sha256sum -c -
105 ```
106
107 _(Where "node-vx.y.z.tar.gz" is the name of the file you have
108 downloaded)_
109
110 Additionally, Current and LTS releases (not Nightlies) have GPG signed
111 copies of SHASUM256.txt files available as SHASUM256.txt.asc. You can use
112 `gpg` to verify that the file has not been tampered with.
113
114 To verify a SHASUM256.txt.asc, you will first need to import all of
115 the GPG keys of individuals authorized to create releases. They are
116 listed at the bottom of this README under [Release Team](#release-team).
117 Use a command such as this to import the keys:
118
119 ```console
120 $ gpg --keyserver pool.sks-keyservers.net --recv-keys DD8F2338BAE7501E3DD5AC78C273792F7D83545D
121 ```
122
123 _(See the bottom of this README for a full script to import active
124 release keys)_
125
126 You can then use `gpg --verify SHASUMS256.txt.asc` to verify that the
127 file has been signed by an authorized member of the Node.js team.
128
129 Once verified, use the SHASUMS256.txt.asc file to get the checksum for
130 the binary verification command above.
131
132 ## Building Node.js
133
134 See [BUILDING.md](BUILDING.md) for instructions on how to build
135 Node.js from source.
136
137 ## Security
138
139 All security bugs in Node.js are taken seriously and should be reported by
140 emailing security@nodejs.org. This will be delivered to a subset of the project
141 team who handle security issues. Please don't disclose security bugs
142 publicly until they have been handled by the security team.
143
144 Your email will be acknowledged within 24 hours, and you’ll receive a more
145 detailed response to your email within 48 hours indicating the next steps in
146 handling your report.
147
148 ## Current Project Team Members
149
150 The Node.js project team comprises a group of core collaborators and a sub-group
151 that forms the _Core Technical Committee_ (CTC) which governs the project. For
152 more information about the governance of the Node.js project, see
153 [GOVERNANCE.md](./GOVERNANCE.md).
154
155 ### CTC (Core Technical Committee)
156
157 * [addaleax](https://github.com/addaleax) -
158 **Anna Henningsen** &lt;anna@addaleax.net&gt;
159 * [bnoordhuis](https://github.com/bnoordhuis) -
160 **Ben Noordhuis** &lt;info@bnoordhuis.nl&gt;
161 * [ChALkeR](https://github.com/ChALkeR) -
162 **Сковорода Никита Андреевич** &lt;chalkerx@gmail.com&gt;
163 * [chrisdickinson](https://github.com/chrisdickinson) -
164 **Chris Dickinson** &lt;christopher.s.dickinson@gmail.com&gt;
165 * [cjihrig](https://github.com/cjihrig) -
166 **Colin Ihrig** &lt;cjihrig@gmail.com&gt;
167 * [evanlucas](https://github.com/evanlucas) -
168 **Evan Lucas** &lt;evanlucas@me.com&gt;
169 * [fishrock123](https://github.com/fishrock123) -
170 **Jeremiah Senkpiel** &lt;fishrock123@rocketmail.com&gt;
171 * [indutny](https://github.com/indutny) -
172 **Fedor Indutny** &lt;fedor.indutny@gmail.com&gt;
173 * [jasnell](https://github.com/jasnell) -
174 **James M Snell** &lt;jasnell@gmail.com&gt;
175 * [mhdawson](https://github.com/mhdawson) -
176 **Michael Dawson** &lt;michael_dawson@ca.ibm.com&gt;
177 * [misterdjules](https://github.com/misterdjules) -
178 **Julien Gilli** &lt;jgilli@nodejs.org&gt;
179 * [mscdex](https://github.com/mscdex) -
180 **Brian White** &lt;mscdex@mscdex.net&gt;
181 * [ofrobots](https://github.com/ofrobots) -
182 **Ali Ijaz Sheikh** &lt;ofrobots@google.com&gt;
183 * [rvagg](https://github.com/rvagg) -
184 **Rod Vagg** &lt;rod@vagg.org&gt;
185 * [shigeki](https://github.com/shigeki) -
186 **Shigeki Ohtsu** &lt;ohtsu@iij.ad.jp&gt;
187 * [targos](https://github.com/targos) -
188 **Michaël Zasso** &lt;targos@protonmail.com&gt;
189 * [TheAlphaNerd](https://github.com/TheAlphaNerd) -
190 **Myles Borins** &lt;myles.borins@gmail.com&gt;
191 * [thefourtheye](https://github.com/thefourtheye) -
192 **Sakthipriyan Vairamani** &lt;thechargingvolcano@gmail.com&gt;
193 * [trevnorris](https://github.com/trevnorris) -
194 **Trevor Norris** &lt;trev.norris@gmail.com&gt;
195 * [Trott](https://github.com/Trott) -
196 **Rich Trott** &lt;rtrott@gmail.com&gt;
197
198 ### Collaborators
199
200 * [ak239](https://github.com/ak239) -
201 **Aleksei Koziatinskii** &lt;ak239spb@gmail.com&gt;
202 * [andrasq](https://github.com/andrasq) -
203 **Andras** &lt;andras@kinvey.com&gt;
204 * [AndreasMadsen](https://github.com/AndreasMadsen) -
205 **Andreas Madsen** &lt;amwebdk@gmail.com&gt;
206 * [bengl](https://github.com/bengl) -
207 **Bryan English** &lt;bryan@bryanenglish.com&gt;
208 * [benjamingr](https://github.com/benjamingr) -
209 **Benjamin Gruenbaum** &lt;benjamingr@gmail.com&gt;
210 * [bmeck](https://github.com/bmeck) -
211 **Bradley Farias** &lt;bradley.meck@gmail.com&gt;
212 * [brendanashworth](https://github.com/brendanashworth) -
213 **Brendan Ashworth** &lt;brendan.ashworth@me.com&gt;
214 * [bzoz](https://github.com/bzoz) -
215 **Bartosz Sosnowski** &lt;bartosz@janeasystems.com&gt;
216 * [calvinmetcalf](https://github.com/calvinmetcalf) -
217 **Calvin Metcalf** &lt;calvin.metcalf@gmail.com&gt;
218 * [claudiorodriguez](https://github.com/claudiorodriguez) -
219 **Claudio Rodriguez** &lt;cjrodr@yahoo.com&gt;
220 * [danbev](https://github.com/danbev) -
221 **Daniel Bevenius** &lt;daniel.bevenius@gmail.com&gt;
222 * [eljefedelrodeodeljefe](https://github.com/eljefedelrodeodeljefe) -
223 **Robert Jefe Lindstaedt** &lt;robert.lindstaedt@gmail.com&gt;
224 * [estliberitas](https://github.com/estliberitas) -
225 **Alexander Makarenko** &lt;estliberitas@gmail.com&gt;
226 * [eugeneo](https://github.com/eugeneo) -
227 **Eugene Ostroukhov** &lt;eostroukhov@google.com&gt;
228 * [fhinkel](https://github.com/fhinkel) -
229 **Franziska Hinkelmann** &lt;franziska.hinkelmann@gmail.com&gt;
230 * [firedfox](https://github.com/firedfox) -
231 **Daniel Wang** &lt;wangyang0123@gmail.com&gt;
232 * [geek](https://github.com/geek) -
233 **Wyatt Preul** &lt;wpreul@gmail.com&gt;
234 * [gibfahn](https://github.com/gibfahn) -
235 **Gibson Fahnestock** &lt;gibfahn@gmail.com&gt;
236 * [iarna](https://github.com/iarna) -
237 **Rebecca Turner** &lt;me@re-becca.org&gt;
238 * [imyller](https://github.com/imyller) -
239 **Ilkka Myller** &lt;ilkka.myller@nodefield.com&gt;
240 * [isaacs](https://github.com/isaacs) -
241 **Isaac Z. Schlueter** &lt;i@izs.me&gt;
242 * [italoacasas](https://github.com/italoacasas) -
243 **Italo A. Casas** &lt;me@italoacasas.com&gt;
244 * [iWuzHere](https://github.com/iWuzHere) -
245 **Imran Iqbal** &lt;imran@imraniqbal.org&gt;
246 * [JacksonTian](https://github.com/JacksonTian) -
247 **Jackson Tian** &lt;shyvo1987@gmail.com&gt;
248 * [jbergstroem](https://github.com/jbergstroem) -
249 **Johan Bergström** &lt;bugs@bergstroem.nu&gt;
250 * [jhamhader](https://github.com/jhamhader) -
251 **Yuval Brik** &lt;yuval@brik.org.il&gt;
252 * [joaocgreis](https://github.com/joaocgreis) -
253 **João Reis** &lt;reis@janeasystems.com&gt;
254 * [joshgav](https://github.com/joshgav) -
255 **Josh Gavant** &lt;josh.gavant@outlook.com&gt;
256 * [joyeecheung](https://github.com/joyeecheung) -
257 **Joyee Cheung** &lt;joyeec9h3@gmail.com&gt;
258 * [julianduque](https://github.com/julianduque) -
259 **Julian Duque** &lt;julianduquej@gmail.com&gt;
260 * [JungMinu](https://github.com/JungMinu) -
261 **Minwoo Jung** &lt;jmwsoft@gmail.com&gt;
262 * [lance](https://github.com/lance) -
263 **Lance Ball** &lt;lball@redhat.com&gt;
264 * [lpinca](https://github.com/lpinca) -
265 **Luigi Pinca** &lt;luigipinca@gmail.com&gt;
266 * [lxe](https://github.com/lxe) -
267 **Aleksey Smolenchuk** &lt;lxe@lxe.co&gt;
268 * [matthewloring](https://github.com/matthewloring) -
269 **Matthew Loring** &lt;mattloring@google.com&gt;
270 * [mcollina](https://github.com/mcollina) -
271 **Matteo Collina** &lt;matteo.collina@gmail.com&gt;
272 * [micnic](https://github.com/micnic) -
273 **Nicu Micleușanu** &lt;micnic90@gmail.com&gt;
274 * [mikeal](https://github.com/mikeal) -
275 **Mikeal Rogers** &lt;mikeal.rogers@gmail.com&gt;
276 * [monsanto](https://github.com/monsanto) -
277 **Christopher Monsanto** &lt;chris@monsan.to&gt;
278 * [not-an-aardvark](https://github.com/not-an-aardvark) -
279 **Teddy Katz** &lt;teddy.katz@gmail.com&gt;
280 * [Olegas](https://github.com/Olegas) -
281 **Oleg Elifantiev** &lt;oleg@elifantiev.ru&gt;
282 * [orangemocha](https://github.com/orangemocha) -
283 **Alexis Campailla** &lt;orangemocha@nodejs.org&gt;
284 * [othiym23](https://github.com/othiym23) -
285 **Forrest L Norvell** &lt;ogd@aoaioxxysz.net&gt;
286 * [petkaantonov](https://github.com/petkaantonov) -
287 **Petka Antonov** &lt;petka_antonov@hotmail.com&gt;
288 * [phillipj](https://github.com/phillipj) -
289 **Phillip Johnsen** &lt;johphi@gmail.com&gt;
290 * [piscisaureus](https://github.com/piscisaureus) -
291 **Bert Belder** &lt;bertbelder@gmail.com&gt;
292 * [pmq20](https://github.com/pmq20) -
293 **Minqi Pan** &lt;pmq2001@gmail.com&gt;
294 * [princejwesley](https://github.com/princejwesley) -
295 **Prince John Wesley** &lt;princejohnwesley@gmail.com&gt;
296 * [qard](https://github.com/qard) -
297 **Stephen Belanger** &lt;admin@stephenbelanger.com&gt;
298 * [rlidwka](https://github.com/rlidwka) -
299 **Alex Kocharin** &lt;alex@kocharin.ru&gt;
300 * [rmg](https://github.com/rmg) -
301 **Ryan Graham** &lt;r.m.graham@gmail.com&gt;
302 * [robertkowalski](https://github.com/robertkowalski) -
303 **Robert Kowalski** &lt;rok@kowalski.gd&gt;
304 * [romankl](https://github.com/romankl) -
305 **Roman Klauke** &lt;romaaan.git@gmail.com&gt;
306 * [ronkorving](https://github.com/ronkorving) -
307 **Ron Korving** &lt;ron@ronkorving.nl&gt;
308 * [RReverser](https://github.com/RReverser) -
309 **Ingvar Stepanyan** &lt;me@rreverser.com&gt;
310 * [saghul](https://github.com/saghul) -
311 **Saúl Ibarra Corretgé** &lt;saghul@gmail.com&gt;
312 * [sam-github](https://github.com/sam-github) -
313 **Sam Roberts** &lt;vieuxtech@gmail.com&gt;
314 * [santigimeno](https://github.com/santigimeno) -
315 **Santiago Gimeno** &lt;santiago.gimeno@gmail.com&gt;
316 * [seishun](https://github.com/seishun) -
317 **Nikolai Vavilov** &lt;vvnicholas@gmail.com&gt;
318 * [silverwind](https://github.com/silverwind) -
319 **Roman Reiss** &lt;me@silverwind.io&gt;
320 * [srl295](https://github.com/srl295) -
321 **Steven R Loomis** &lt;srloomis@us.ibm.com&gt;
322 * [stefanmb](https://github.com/stefanmb) -
323 **Stefan Budeanu** &lt;stefan@budeanu.com&gt;
324 * [tellnes](https://github.com/tellnes) -
325 **Christian Tellnes** &lt;christian@tellnes.no&gt;
326 * [thekemkid](https://github.com/thekemkid) -
327 **Glen Keane** &lt;glenkeane.94@gmail.com&gt;
328 * [thlorenz](https://github.com/thlorenz) -
329 **Thorsten Lorenz** &lt;thlorenz@gmx.de&gt;
330 * [tunniclm](https://github.com/tunniclm) -
331 **Mike Tunnicliffe** &lt;m.j.tunnicliffe@gmail.com&gt;
332 * [vkurchatkin](https://github.com/vkurchatkin) -
333 **Vladimir Kurchatkin** &lt;vladimir.kurchatkin@gmail.com&gt;
334 * [whitlockjc](https://github.com/whitlockjc) -
335 **Jeremy Whitlock** &lt;jwhitlock@apache.org&gt;
336 * [yorkie](https://github.com/yorkie) -
337 **Yorkie Liu** &lt;yorkiefixer@gmail.com&gt;
338 * [yosuke-furukawa](https://github.com/yosuke-furukawa) -
339 **Yosuke Furukawa** &lt;yosuke.furukawa@gmail.com&gt;
340
341 Collaborators (which includes CTC members) follow the
342 [COLLABORATOR_GUIDE.md](./COLLABORATOR_GUIDE.md) in maintaining the Node.js
343 project.
344
345 ### Release Team
346
347 Releases of Node.js and io.js will be signed with one of the following GPG keys:
348
349 * **Chris Dickinson** &lt;christopher.s.dickinson@gmail.com&gt;
350 `9554F04D7259F04124DE6B476D5A82AC7E37093B`
351 * **Colin Ihrig** &lt;cjihrig@gmail.com&gt;
352 `94AE36675C464D64BAFA68DD7434390BDBE9B9C5`
353 * **Evan Lucas** &lt;evanlucas@me.com&gt;
354 `B9AE9905FFD7803F25714661B63B535A4C206CA9`
355 * **James M Snell** &lt;jasnell@keybase.io&gt;
356 `71DCFD284A79C3B38668286BC97EC7A07EDE3FC1`
357 * **Jeremiah Senkpiel** &lt;fishrock@keybase.io&gt;
358 `FD3A5288F042B6850C66B31F09FE44734EB7990E`
359 * **Myles Borins** &lt;myles.borins@gmail.com&gt;
360 `C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8`
361 * **Rod Vagg** &lt;rod@vagg.org&gt;
362 `DD8F2338BAE7501E3DD5AC78C273792F7D83545D`
363
364 The full set of trusted release keys can be imported by running:
365
366 ```shell
367 gpg --keyserver pool.sks-keyservers.net --recv-keys 9554F04D7259F04124DE6B476D5A82AC7E37093B
368 gpg --keyserver pool.sks-keyservers.net --recv-keys 94AE36675C464D64BAFA68DD7434390BDBE9B9C5
369 gpg --keyserver pool.sks-keyservers.net --recv-keys FD3A5288F042B6850C66B31F09FE44734EB7990E
370 gpg --keyserver pool.sks-keyservers.net --recv-keys 71DCFD284A79C3B38668286BC97EC7A07EDE3FC1
371 gpg --keyserver pool.sks-keyservers.net --recv-keys DD8F2338BAE7501E3DD5AC78C273792F7D83545D
372 gpg --keyserver pool.sks-keyservers.net --recv-keys C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8
373 gpg --keyserver pool.sks-keyservers.net --recv-keys B9AE9905FFD7803F25714661B63B535A4C206CA9
374 ```
375
376 See the section above on [Verifying Binaries](#verifying-binaries) for details
377 on what to do with these keys to verify that a downloaded file is official.
378
379 Previous releases of Node.js have been signed with one of the following GPG
380 keys:
381
382 * **Isaac Z. Schlueter** &lt;i@izs.me&gt;
383 `93C7E9E91B49E432C2F75674B0A78B0A6C481CF6`
384 * **Julien Gilli** &lt;jgilli@fastmail.fm&gt;
385 `114F43EE0176B71C7BC219DD50A3051F888C628D`
386 * **Timothy J Fontaine** &lt;tjfontaine@gmail.com&gt;
387 `7937DFD2AB06298B2293C3187D33FF9D0246406D`
388
389 [npm]: https://www.npmjs.com
390 [Website]: https://nodejs.org/en/
391 [Contributing to the project]: CONTRIBUTING.md
392 [Node.js Help]: https://github.com/nodejs/help
393 [Node.js Moderation Policy]: https://github.com/nodejs/TSC/blob/master/Moderation-Policy.md
394 [#node.js on chat.freenode.net]: https://webchat.freenode.net?channels=node.js&uio=d4
395 [#node-dev on chat.freenode.net]: https://webchat.freenode.net?channels=node-dev&uio=d4