Tagged Questions
1
vote
0answers
23 views
Error: invalid signature: 0x4acf92ad (at position: 0x29)
I was trying to convert excel into json in node. I found a few modules that may be helpful.
I tried npm excel https://npmjs.org/package/excel
My app.js
var express = require('express'); //Call ...
0
votes
1answer
21 views
How to get my module to work globally? Is there any config in package.json?
I have a very simple module that I want to use globally. I have already published it to npm as gammarouter-api.
I would like to know how can I test the module globally before publishing to npm (is ...
0
votes
0answers
19 views
can't install libxml using nodejs on debian squeeze
I'm running debian squeeze
I did aptitude install libxml2-dev
And I followed this howto to install node.js on my server https://sekati.com/etc/install-nodejs-on-debian-squeeze
But when I want to ...
0
votes
0answers
13 views
Team City will not detect teamcity.node plugin
Hey guys im pretty new to team city I normally work with jenkins so please bear with me.
I am trying to get the teamcity.node plugin to work on our builds, so I can run grunt but im unfortunately ...
2
votes
1answer
29 views
Understanding npm and Node.js install location for modules
I've been using Node.js and npm for a few weeks with great success and have started to question the best practice for installing local modules. I understand the Global vs Local argument, however, my ...
1
vote
2answers
37 views
npm: Why is a version “0.1” invalid?
I had to change the version of my npm app from 0.1 to 0.0.1 in order for npm not to do this.
$ npm install
npm ERR! install Couldn't read dependencies
npm ERR! Error: invalid version: 0.1
npm ERR! ...
0
votes
0answers
40 views
npm install hangs
This is my package.json:
{
"name": "my-example-app",
"version": "0.1.0",
"dependencies": {
"request": "*",
"nano": "3.3.x",
"async": "~0.2"
}
}
Now, when I open the cmd and run npm ...
-1
votes
0answers
31 views
installing node modules with npm install
im using debian 6, nodejs 0.10 npm 1.2. installed on a cloudserver.
this is my package.json
{
"name": "app",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node app"
},
...
0
votes
1answer
23 views
Jenkins script quitting prematurely when using npm install on Windows
In my Jenkins job I want to build a JavaScript app using Grunt. The Jenkins build scripts creates a build directory (if it doesn't already exist), changes to that directory and runs:
npm install ...
0
votes
0answers
38 views
calling npm from webstorm commad line tool
Im just starting with grunt in webstorm (on windows) and can't call npm (node plugin is installed and enabled, node.exe is in the system path).
npm init
what command line tool outputs:
...
0
votes
0answers
88 views
ExpressJS - throw er Unhandled error event
I created expressjs application using the following commands:
express -e folderName
npm install ejs --save
npm install
When I run the application with: node app.js, I have the following errors:
...
4
votes
1answer
700 views
npm WARN package.json
I installed expressjs with the following command:
sudo npm install -g express
I have the following warning:
npm WARN package.json [email protected] No repository field.
npm WARN package.json ...
1
vote
1answer
44 views
Meteor, how to fix to a npm package
So, I'm using a npm package in a meteor app. It's imported in a .npm directory, and I want to add a fix to the package.
I could send the fix to the author of the package, but that will take a certain ...
0
votes
0answers
14 views
n module brokes npm
After I switch from one node.js version to another with n module - https://github.com/visionmedia/n/, my npm is broken...
MacBook-Pro-Dmitri:~ dmitri$ npm --version
module.js:340
throw err;
...
0
votes
1answer
29 views
Nodejs cannot get /login
Hi i am following peepcode nodejs screencast, now i have an issues of rendering the login form. My code are as follow:
app.js
/**
* Module dependencies.
*/
require('coffee-script');
var express = ...