npm не запускается: dev в приложении NestJS - PullRequest
2 голосов
/ 11 марта 2019

Итак, я создал новое приложение NestJS с CLI. Я установил nodemon как зависимость и глобально. Мой package.json выглядит так:

"scripts": {
"build": "tsc -p tsconfig.build.json",
"format": "prettier --write \"src/**/*.ts\"",
"start": "ts-node -r tsconfig-paths/register src/main.ts",
"start:dev": "nodemon",
"start:debug": "nodemon --config nodemon-debug.json",

и мой nodemon.json выглядит так:

"watch": ["src"],
"ext": "ts",
"ignore": ["src/**/*.spec.ts"],
"exec": "ts-node -r tsconfig-paths/register src/main.ts"

Итак, очень простая настройка. Но если я попытаюсь запустить сервер dev с: npm start:dev, я получу это сообщение об ошибке:

Usage: npm < command >

where < command > is one of:

access, adduser, audit, bin, bugs, c, cache, ci, cit,
clean-install, clean-install-test, completion, config,
create, ddp, dedupe, deprecate, dist-tag, docs, doctor,
edit, explore, get, help, help-search, hook, i, init,
install, install-ci-test, install-test, it, link, list, ln,
login, logout, ls, org, outdated, owner, pack, ping, prefix,
profile, prune, publish, rb, rebuild, repo, restart, root,
run, run-script, s, se, search, set, shrinkwrap, star,
stars, start, stop, t, team, test, token, tst, un,
uninstall, unpublish, unstar, up, update, v, version, view,
whoami

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

npm@6.6.0 /usr/local/lib/node_modules/npm

Did you mean this?
    start

My npmrc содержит некоторые учетные данные для моего репозитория github с моей работы!

1 Ответ

4 голосов
/ 11 марта 2019

Чтобы запустить скрипт npm, вы должны вызвать npm run. Так что звоните npm run start:dev.

...