1
0
mirror of https://github.com/kataras/iris.git synced 2026-03-04 07:26:37 +00:00

finally make the silent and local installation for nodejs get working on windows - there is no resource online that works correctly LAWL!

Former-commit-id: f6727efd6bbc059c96a0f242b29e10bbac3b65b8
This commit is contained in:
Gerasimos (Makis) Maropoulos
2019-06-23 17:32:37 +03:00
parent aee3c489ed
commit 208e593df7
4 changed files with 108 additions and 38 deletions

View File

@@ -0,0 +1,7 @@
INSTALL_DIR=$1
VERSION=$2
cd $INSTALL_DIR
curl http://nodejs.org/dist/node-$VERSION.tar.gz | tar xz --strip-components=1
./configure --prefix=$INSTALL_DIR
make install
curl https://www.npmjs.org/install.sh | sh