251022dff592e49d5d3f3794b504474b15e91b44
[webi-installers/.git] / node / install.bash
1 #!/bin/bash
2
3 # title: Node.js
4 # homepage: https://nodejs.org
5 # tagline: JavaScript V8 runtime
6 # description: |
7 #   Node.jsĀ® is a JavaScript runtime built on Chrome's V8 JavaScript engine
8 # examples: |
9 #
10 #   ### Hello World
11 #
12 #   ```bash
13 #   node -e 'console.log("Hello, World!")'
14 #   > Hello, World!
15 #   ```
16 #
17 #   ### A Simple Web Server
18 #
19 #   `server.js`:
20 #
21 #   ```bash
22 #   var http = require('http');
23 #   var app = function (req, res) {
24 #     res.end('Hello, World!');
25 #   };
26 #   http.createServer(app).listen(8080, function () {
27 #     console.info('Listening on', this.address());
28 #   });
29 #   ```
30 #
31 #   ```bash
32 #   node server.js
33 #   ```
34 #
35 #   ### An Express App
36 #
37 #   ```bash
38 #   mkdir my-server
39 #   pushd my-server
40 #   npm init
41 #   npm install --save express
42 #   ```
43 #
44 #   `app.js`:
45 #
46 #   ```js
47 #   'use strict';
48 #
49 #   var express = require('express');
50 #   var app = express();
51 #
52 #   app.use('/', function (req, res, next) {
53 #     res.end("Hello, World!");
54 #   });
55 #
56 #   module.exports = app;</code></pre>
57 #   ```
58 #
59 #   `server.js`:
60 #
61 #   ```js
62 #   'use strict';
63 #
64 #   var http = require('http');
65 #   var app = require('./app.js');
66 #
67 #   http.createServer(app).listen(8080, function () {
68 #     console.info('Listening on', this.address());
69 #   });
70 #   ```
71 #
72 #   ```bash
73 #   npm start
74 #   ```
75 #
76
77 set -e
78 set -u
79
80 ##################
81 #  Install node  #
82 ##################
83
84 new_node_home="${HOME}/.local/opt/node-v${WEBI_VERSION}"
85 new_node="${HOME}/.local/opt/node-v${WEBI_VERSION}/bin/node"
86
87 # Test for existing version
88 set +e
89 cur_node="$(command -v node)"
90 set -e
91 if [ -e "$new_node_home/bin/node" ]; then
92     # node of some version is already installed
93     if [ "v${WEBI_VERSION}" == "$("$new_node_home/bin/node" -v 2>/dev/null)" ]; then
94         echo node v${WEBI_VERSION} already installed at $new_node_home
95         exit 0
96     fi
97 fi
98 if [ -n "$cur_node" ] && [ "$cur_node" != "$new_node" ]; then
99     echo "WARN: possible conflict with node v$WEBI_VERSION at $cur_node"
100 fi
101
102 # Note: this file is `source`d by the true installer and hence will have the webi functions
103
104 # because we created releases.js we can use webi_download()
105 # downloads node to ~/Downloads
106 webi_download
107
108 # because this is tar or zip, we can webi_extract()
109 # extracts to the WEBI_TMP directory, raw (no --strip-prefix)
110 webi_extract
111
112 pushd "$WEBI_TMP" 2>&1 >/dev/null
113     echo Installing node v${WEBI_VERSION} as "$new_node"
114
115     # simpler for single-binary commands
116     #mv ./example*/bin/example "$HOME/.local/bin"
117
118     # best for packages and toolchains
119     rm -rf "$new_node_home"
120     if [ -n "$(command -v rsync 2>/dev/null | grep rsync)" ]; then
121       rsync -Krl ./node*/ "$new_node_home/" 2>/dev/null
122     else
123       cp -Hr ./node*/* "$new_node_home/" 2>/dev/null
124       cp -Hr ./node*/.* "$new_node_home/" 2>/dev/null
125     fi
126     rm -rf ./node*
127 popd 2>&1 >/dev/null
128
129 ###################
130 #   Update PATH   #
131 ###################
132
133 # TODO get better output from pathman / output the path to add as return to webi bootstrap
134 webi_path_add "$new_node_home/bin"
135
136 echo "Installed 'node' and 'npm'"
137 echo ""