| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -2,7 +2,7 @@ | |||
| 2 | 2 | ||
| 3 | 3 | <!--type=misc--> | |
| 4 | 4 | ||
| 5 | - An example of a [web server](http.html) written with node.js which responds with | ||
| 5 | + An example of a [web server](http.html) written with Node.js which responds with | ||
| 6 | 6 | 'Hello World': | |
| 7 | 7 | ||
| 8 | 8 | var http = require('http'); | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -12,7 +12,7 @@ To schedule execution of a one-time `callback` after `delay` milliseconds. Retur | |||
| 12 | 12 | also pass arguments to the callback. | |
| 13 | 13 | ||
| 14 | 14 | It is important to note that your callback will probably not be called in exactly | |
| 15 | - `delay` milliseconds - node.js makes no guarantees about the exact timing of when | ||
| 15 | + `delay` milliseconds - Node.js makes no guarantees about the exact timing of when | ||
| 16 | 16 | the callback will fire, nor of the ordering things will fire in. The callback will | |
| 17 | 17 | be called as close as possible to the time specified. | |
| 18 | 18 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -501,7 +501,7 @@ dictionary with keys: | |||
| 501 | 501 | instead of the client preferences. For further details see `tls` module | |
| 502 | 502 | documentation. | |
| 503 | 503 | ||
| 504 | - If no 'ca' details are given, then node.js will use the default | ||
| 504 | + If no 'ca' details are given, then Node.js will use the default | ||
| 505 | 505 | publicly trusted list of CAs as given in | |
| 506 | 506 | <http://mxr.mozilla.org/mozilla/source/security/nss/lib/ckfw/builtins/certdata.txt>. | |
| 507 | 507 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -5,9 +5,9 @@ | |||
| 5 | 5 | The `tty` module houses the `tty.ReadStream` and `tty.WriteStream` classes. In | |
| 6 | 6 | most cases, you will not need to use this module directly. | |
| 7 | 7 | ||
| 8 | - When node.js detects that it is being run inside a TTY context, then `process.stdin` | ||
| 8 | + When Node.js detects that it is being run inside a TTY context, then `process.stdin` | ||
| 9 | 9 | will be a `tty.ReadStream` instance and `process.stdout` will be | |
| 10 | - a `tty.WriteStream` instance. The preferred way to check if node.js is being run | ||
| 10 | + a `tty.WriteStream` instance. The preferred way to check if Node.js is being run | ||
| 11 | 11 | in a TTY context is to check `process.stdout.isTTY`: | |
| 12 | 12 | ||
| 13 | 13 | $ node -p -e "Boolean(process.stdout.isTTY)" | |
@@ -32,7 +32,7 @@ Deprecated. Use `tty.ReadStream#setRawMode()` | |||
| 32 | 32 | ||
| 33 | 33 | A `net.Socket` subclass that represents the readable portion of a tty. In normal | |
| 34 | 34 | circumstances, `process.stdin` will be the only `tty.ReadStream` instance in any | |
| 35 | - node.js program (only when `isatty(0)` is true). | ||
| 35 | + Node.js program (only when `isatty(0)` is true). | ||
| 36 | 36 | ||
| 37 | 37 | ### rs.isRaw | |
| 38 | 38 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -761,7 +761,7 @@ If set to 1 then colors will not be used in the REPL. | |||
| 761 | 761 | ||
| 762 | 762 | .SH RESOURCES AND DOCUMENTATION | |
| 763 | 763 | ||
| 764 | - See the website for documentation http://nodejs.org/ | ||
| 764 | + See the website for documentation https://nodejs.org/ | ||
| 765 | 765 | ||
| 766 | 766 | Mailing list: http://groups.google.com/group/nodejs | |
| 767 | 767 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -13,15 +13,15 @@ There are three relevant Jenkins jobs that should be used for a release flow: | |||
| 13 | 13 | ||
| 14 | 14 | **a.** **Test runs:** **[iojs+any-pr+multi](https://jenkins-iojs.nodesource.com/job/iojs+any-pr+multi/)** is used for a final full-test run to ensure that the current *HEAD* is stable. | |
| 15 | 15 | ||
| 16 | - **b.** **Nightly builds:** (optional) **[iojs+release](https://jenkins-iojs.nodesource.com/job/iojs+release/)** can be used to create a nightly release for the current *HEAD* if public test releases are required. Builds triggered with this job are published straight to <http://nodejs.org/download/nightly/> and are available for public download. | ||
| 16 | + **b.** **Nightly builds:** (optional) **[iojs+release](https://jenkins-iojs.nodesource.com/job/iojs+release/)** can be used to create a nightly release for the current *HEAD* if public test releases are required. Builds triggered with this job are published straight to <https://nodejs.org/download/nightly/> and are available for public download. | ||
| 17 | 17 | ||
| 18 | 18 | **c.** **Release builds:** **[iojs+release](https://jenkins-iojs.nodesource.com/job/iojs+release/)** does all of the work to build all required release assets. Promotion of the release files is a manual step once they are ready (see below). | |
| 19 | 19 | ||
| 20 | 20 | The [Node.js build team](https://github.com/nodejs/build) is able to provide this access to individuals authorized by the TC. | |
| 21 | 21 | ||
| 22 | 22 | ### 2. <nodejs.org> Access | |
| 23 | 23 | ||
| 24 | - The _dist_ user on nodejs.org controls the assets available in <http://nodejs.org/download/> (note that <http://nodejs.org/dist/> is an alias for <https://nodejs.org/download/release/>). | ||
| 24 | + The _dist_ user on nodejs.org controls the assets available in <https://nodejs.org/download/> (note that <https://nodejs.org/dist/> is an alias for <https://nodejs.org/download/release/>). | ||
| 25 | 25 | ||
| 26 | 26 | The Jenkins release build slaves upload their artifacts to the web server as the _staging_ user, the _dist_ user has access to move these assets to public access (the _staging_ user does not, for security purposes). | |
| 27 | 27 | ||
@@ -56,7 +56,7 @@ Run a **[iojs+any-pr+multi](https://jenkins-iojs.nodesource.com/job/iojs+any-pr+ | |||
| 56 | 56 | ||
| 57 | 57 | ### 2. Produce a Nightly Build _(optional)_ | |
| 58 | 58 | ||
| 59 | - If there is a reason to produce a test release for the purpose of having others try out installers or specifics of builds, produce a nightly build using **[iojs+release](https://jenkins-iojs.nodesource.com/job/iojs+release/)** and wait for it to drop in <http://nodejs.org/download/nightly/>. Follow the directions and enter a proper length commit sha, a date string and select "nightly" for "disttype". | ||
| 59 | + If there is a reason to produce a test release for the purpose of having others try out installers or specifics of builds, produce a nightly build using **[iojs+release](https://jenkins-iojs.nodesource.com/job/iojs+release/)** and wait for it to drop in <https://nodejs.org/download/nightly/>. Follow the directions and enter a proper length commit sha, a date string and select "nightly" for "disttype". | ||
| 60 | 60 | ||
| 61 | 61 | This is particularly recommended if there has been recent work relating to the OS X or Windows installers as they are not tested in any way by CI. | |
| 62 | 62 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -21,7 +21,7 @@ Release: 1 | |||
| 21 | 21 | Summary: Node.js is a platform for building fast, scalable network applications. | |
| 22 | 22 | Group: Development/Languages | |
| 23 | 23 | License: MIT | |
| 24 | - URL: http://nodejs.org/ | ||
| 24 | + URL: https://nodejs.org/ | ||
| 25 | 25 | Source0: http://nodejs.org/dist/v%{_version}/node-v%{_version}.tar.gz | |
| 26 | 26 | BuildRequires: gcc | |
| 27 | 27 | BuildRequires: gcc-c++ | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -14,8 +14,8 @@ cat "$tools_path/polyfill.js" "$v8_tools/splaytree.js" "$v8_tools/codemap.js" \ | |||
| 14 | 14 | ||
| 15 | 15 | NODE=${NODE:-node} | |
| 16 | 16 | ||
| 17 | - if [ ! -x "$NODE" ] && [ -x "$(dirname "$0")/../../iojs" ]; then | ||
| 18 | - NODE="$(dirname "$0")/../../iojs" | ||
| 17 | + if [ ! -x "$NODE" ] && [ -x "$(dirname "$0")/../../node" ]; then | ||
| 18 | + NODE="$(dirname "$0")/../../node" | ||
| 19 | 19 | fi | |
| 20 | 20 | ||
| 21 | 21 | "$NODE" "$TEMP_SCRIPT_FILE" $@ | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -8,7 +8,7 @@ SET temp_script=%TEMP%\node-tick-processor-input-script | |||
| 8 | 8 | ||
| 9 | 9 | IF NOT DEFINED NODE (SET NODE=node.exe) | |
| 10 | 10 | %NODE% --version 2> NUL | |
| 11 | - if %ERRORLEVEL%==9009 (SET NODE=%~dp0\..\..\Release\iojs.exe) | ||
| 11 | + if %ERRORLEVEL%==9009 (SET NODE=%~dp0\..\..\Release\node.exe) | ||
| 12 | 12 | ||
| 13 | 13 | ||
| 14 | 14 | type %tools_dir%polyfill.js %v8_tools%splaytree.js %v8_tools%codemap.js^ | |
| Back | FazBrowse Home | New Git URL |
0 commit comments