Запустить скрипт узла из пути проекта

Я работаю на win 7 и установил nodeJS в качестве переменной пути.

Я установил модуль nodeJs ( pusher) в свой проект laravel и получил следующую структуру папок при добавлении еще одной библиотеки:

Я хотел бы представить server.js файл:

var http = require('http');
http.createServer(function (req, res) {
    res.writeHead(200, {'Content-Type': 'text/plain'});
    res.end('Hello World\n');
}).listen(1337, "127.0.0.1");
console.log('Server running at http://127.0.0.1:1337/');

Я попытался перейти в мою папку node_modules и сделать

npm server.js

Тем не менее, я только вернусь

$ npm server.js

Usage: npm <command>

where <command> is one of:
    add-user, adduser, apihelp, author, bin, bugs, c, cache,
    completion, config, ddp, dedupe, deprecate, docs, edit,
    explore, faq, find, find-dupes, get, help, help-search,
    home, i, info, init, install, isntall, issues, la, link,
    list, ll, ln, login, ls, outdated, owner, pack, prefix,
    prune, publish, r, rb, rebuild, remove, repo, restart, rm,
    root, run-script, s, se, search, set, show, shrinkwrap,
    star, stars, start, stop, submodule, tag, test, tst, un,
    uninstall, unlink, unpublish, unstar, up, update, v,
    version, view, whoami

npm <cmd> -h     quick help on <cmd>
npm -l           display full usage info
npm faq          commonly asked questions
npm help <term>  search for help on <term>
npm help npm     involved overview

Specify configs in the ini-formatted file:
    C:\Users\User\.npmrc
or on the command line via: npm <command> --key value
Config info can be viewed via: npm help config

npm@1.3.24 c:\Program Files (x86)\nodejs\node_modules\npm

Любые рекомендации, что я делаю не так?

Я ценю ваш ответ!

0 ответов

Другие вопросы по тегам