node package manager is a package manager for node.js
1
vote
1answer
27 views
Npm throws error [Opensuse Tumbleweed]
I tried installing node.js on openSUSE Tumbleweed, but when I try to run npm install I get an error:
openssl fips failed: error:2D06C06E:FIPS routines:FIPS_module_mode_set:fingerprint does not match
...
1
vote
1answer
1k views
Is there an option to install an npm package without dependencies?
I'm attemting to modify an npm package with multiple dependencies. As such npm install -g . takes a long time to execute. Do I have other options besides removing the dependencies from packages.json?
0
votes
1answer
256 views
How to install bower on CentOS 7?
I am trying to install bower on CentOS 7, after installing node.js. To install node.js I followed these steps:
Step1: wget http://nodejs.org/dist/v0.10.30/node-v0.10.30.tar.gz
Step2: tar xzvf ...
1
vote
1answer
215 views
Bash script problem in RPM postinstall
I created an rpm package that extract a Node.js project into a specific folder and then I created a postinstall script that cd into that folder and perform an "npm install --production"
#!/bin/bash
...
1
vote
0answers
108 views
npm on ARM return TypeError: Bad argument
Env
Cross-compiled node.js for ARM read more...
Installed on target FriendlyARM mini210s running bare Linux 3.0.8 armv7l
On target
node.js seems to function properly. I tried a simple hello word ...
2
votes
1answer
307 views
Is it safe to install software globally with npm?
The node.js package manager, npm, has an option to install packages globally. Since distributions typically have their own package manager, is it safe to use the global option? Could npm packages ...
0
votes
0answers
39 views
npm style OS package manager. Packages local to a directory
Is there any distro or package manager with the following npm-like characteristics?:
Packages are installed to their own directory, chosen by the user at install time. As opposed to packages ...
0
votes
0answers
106 views
What is a good way to globally install packages with npm on a RHEL-based distro?
I am running into an issue where node.js RPM packages from Fedora's repository and packages installed with 'npm install -g ...' are both being installed in /usr/lib/node_modules (npm itself being ...
6
votes
1answer
280 views
Setting permissions for specific programs to run as guest
How do I set permissions for an HTTP server (nodejs) to run programs in /usr/local/share/npm/ safely?
My use case is to setup my OSX box to run cloud9 and use titanium to build iOS apps for ...
0
votes
1answer
1k views
NodeJS for Slackware
I want to run NodeJS on Slackware based distro named PuppyLinux. Since I am used to Ubuntu and CentOS (the simple Linux land), I found it pretty hard to find a NodeJS package to run on Slackware.
I ...
2
votes
1answer
887 views
How to install Node.js in CentOS 5.10 with Python 2.4?
I want to use Grunt on websites we have hosted on our WHM dedicated server.
It is running CENTOS 5.10 x86_64 standard with WHM 11.42.1 (build 21).
It is critical that things do not break, as we have ...
4
votes
1answer
3k views
Why is permission denied for npm start using node-dev?
I am trying to start a node.js application with on a low permissions user. All the files I know of are owned by the correct user and have permissions set reasonably well. I'm trying to use a script ...
0
votes
3answers
265 views
Distro with pip and npm as package managers?
Is there an attempt of distro around that for Python and Node code ( and Ruby , Lua ) would use Pip, NPM and rubygems and luarocks respectively ? It could simply work as a passthrough from native ...
0
votes
2answers
781 views
YUM package “NPM” makes trouble
When I try to install npm like this
sudo yum install npm
I get this error:
Fehler: Multilib version problems found. This often means that the root
cause is something else and multilib ...
3
votes
2answers
184 views
Should I install npm in Kubuntu?
I am using Kubuntu. I am looking into installing a plugin to help in javascript. This seems to be good jshint but it mention npm install
What is this? My understanding is that in Kubuntu I should only ...
2
votes
0answers
262 views
npm issues with uglify-js
I'm trying to use node.js to run a project on my Raspberry Pi (following this guide: http://blog.donaldderek.com/2013/06/build-your-own-google-tv-using-raspberrypi-nodejs-and-socket-io/ ) and I've run ...