Packaging NPM: Difference between revisions
From HacDC Wiki
No edit summary |
No edit summary |
||
(One intermediate revision by one other user not shown) | |||
Line 1: | Line 1: | ||
[[Category:Byzantium]] | |||
* Ensure that [http://nodejs.org/ node.js] is installed and operable. | * Ensure that [http://nodejs.org/ node.js] is installed and operable. | ||
** Note that it is necessary to install node.js and npm on the build system to build the packages.** Download the latest .tar.gz tarball of the node.js source code. | ** Note that it is necessary to install node.js and npm on the build system to build the packages.** Download the latest .tar.gz tarball of the node.js source code. | ||
Line 8: | Line 9: | ||
** '''make test''' | ** '''make test''' | ||
** '''make install DESTDIR=/tmp/nodejs-vx.y.z''' | ** '''make install DESTDIR=/tmp/nodejs-vx.y.z''' | ||
** ''dir2xzm /tmp/nodejs-vx.y.z /tmp/node-x.y.z.xzm''' | ** '''dir2xzm /tmp/nodejs-vx.y.z /tmp/node-x.y.z.xzm''' | ||
* Download the source to npm [https://github.com/isaacs/npm/zipball/master from Github] | * Download the source to npm [https://github.com/isaacs/npm/zipball/master from Github]. | ||
* '''unzip isaacs-npm-...zip''' | * '''unzip isaacs-npm-...zip''' | ||
* '''cd isaacs-npm-...''' | * '''cd isaacs-npm-...''' | ||
Line 20: | Line 21: | ||
** '''node cli.js config set unsafe-perm true''' | ** '''node cli.js config set unsafe-perm true''' | ||
** '''node cli.js install -g .''' | ** '''node cli.js install -g .''' | ||
** ''dir2xzm /tmp/npm-x.y.z /tmp/npm-x.y.z.xzm''' | ** '''dir2xzm /tmp/npm-x.y.z /tmp/npm-x.y.z.xzm''' | ||
* Everything goes in /usr/lib/mode_modules/npm | * Everything goes in ''/usr/lib/mode_modules/npm''. | ||
* /usr/bin/npm* are symlinked to /usr/lib/mode_modules/npm/bin/npm.js | * ''/usr/bin/npm*'' are symlinked to ''/usr/lib/mode_modules/npm/bin/npm.js''. |
Latest revision as of 21:04, 3 April 2012
- Ensure that node.js is installed and operable.
- Note that it is necessary to install node.js and npm on the build system to build the packages.** Download the latest .tar.gz tarball of the node.js source code.
- cd /tmp
- tar xvfz /path/to/node-vx.y.z.tar.gz
- cd node-vx.y.z
- ./configure -p --prefix=/usr
- make
- make test
- make install DESTDIR=/tmp/nodejs-vx.y.z
- dir2xzm /tmp/nodejs-vx.y.z /tmp/node-x.y.z.xzm
- Download the source to npm from Github.
- unzip isaacs-npm-...zip
- cd isaacs-npm-...
- make
- make install
- mkdir -p /tmp/npm-x.y.z/usr
- export npm_config_userconfig=./npmrc
- node cli.js config set cache /tmp/npm-cache
- node cli.js config set prefix /tmp/npm-x.y.z/usr
- node cli.js config set unsafe-perm true
- node cli.js install -g .
- dir2xzm /tmp/npm-x.y.z /tmp/npm-x.y.z.xzm
- Everything goes in /usr/lib/mode_modules/npm.
- /usr/bin/npm* are symlinked to /usr/lib/mode_modules/npm/bin/npm.js.