Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error: Cannot find module '@nestjs/schematics/package.json' #613

Closed
Innei opened this issue Mar 19, 2020 · 32 comments
Closed

Error: Cannot find module '@nestjs/schematics/package.json' #613

Innei opened this issue Mar 19, 2020 · 32 comments

Comments

@Innei
Copy link

Innei commented Mar 19, 2020

I'm submitting a...


[ ] Regression 
[x] Bug report
[ ] Feature request
[ ] Documentation issue or request
[ ] Support request => Please do not submit support request here, instead post your question on Stack Overflow.

Current behavior

I already global add nest/cli by yarn. But I exec nest new project-name, it throw an error.

16:24:53 › yarn global add @nestjs/cli
yarn global v1.22.4
[1/4] 🔍  Resolving packages...
[2/4] 🚚  Fetching packages...
[3/4] 🔗  Linking dependencies...
[4/4] 🔨  Building fresh packages...
success Installed "@nestjs/[email protected]" with binaries:
      - nest
✨  Done in 10.42s.
16:25:36 › nest new focus-server
⚡  We will scaffold your app in a few seconds..

Error: Cannot find module '@nestjs/schematics/package.json'
Require stack:
- /Users/innei/.config/yarn/global/node_modules/@angular-devkit/schematics/tools/node-module-engine-host.js
- /Users/innei/.config/yarn/global/node_modules/@angular-devkit/schematics/tools/workflow/node-workflow.js
- /Users/innei/.config/yarn/global/node_modules/@angular-devkit/schematics/tools/index.js
- /Users/innei/.config/yarn/global/node_modules/@angular-devkit/schematics-cli/bin/schematics.js
    at Function.Module._resolveFilename (internal/modules/cjs/loader.js:976:15)
    at Function.resolve (internal/modules/cjs/helpers.js:78:19)
    at NodeModulesEngineHost._resolveCollectionPath (/Users/innei/.config/yarn/global/node_modules/@angular-devkit/schematics/tools/node-module-engine-host.js:39:45)
    at NodeModulesEngineHost.createCollectionDescription (/Users/innei/.config/yarn/global/node_modules/@angular-devkit/schematics/tools/file-system-engine-host-base.js:109:27)
    at SchematicEngine._createCollectionDescription (/Users/innei/.config/yarn/global/node_modules/@angular-devkit/schematics/src/engine/engine.js:147:40)
    at SchematicEngine.createCollection (/Users/innei/.config/yarn/global/node_modules/@angular-devkit/schematics/src/engine/engine.js:140:43)
    at NodeWorkflow.execute (/Users/innei/.config/yarn/global/node_modules/@angular-devkit/schematics/src/workflow/base.js:100:41)
    at main (/Users/innei/.config/yarn/global/node_modules/@angular-devkit/schematics-cli/bin/schematics.js:224:24)
    at Object.<anonymous> (/Users/innei/.config/yarn/global/node_modules/@angular-devkit/schematics-cli/bin/schematics.js:315:5)
    at Module._compile (internal/modules/cjs/loader.js:1147:30)

Failed to execute command: "/Users/innei/.config/yarn/global/node_modules/@nestjs/cli/node_modules/.bin/schematics" @nestjs/schematics:application --name=focus-server --directory=undefined --no-dry-run --no-skip-git --package-manager=undefined --language="ts" --collection="@nestjs/schematics"
16:26:03 › nest -v
7.0.2

Expected behavior

Minimal reproduction of the problem with instructions

What is the motivation / use case for changing the behavior?

Environment


@jeffminsungkim
Copy link

Please, provide a minimal repository which reproduces your issue.
I've just reproduced one for myself, and it perfectly created a new project.

[System Information]
OS Version     : macOS Catalina
NodeJS Version : v12.5.0
YARN Version    : 1.21.1

[Nest CLI]
Nest CLI Version : 7.0.2

[Nest Platform Information]
platform-express version : 7.0.0
common version           : 7.0.0
core version             : 7.0.0

@Innei
Copy link
Author

Innei commented Mar 19, 2020

this is my info. I just add @nestjs/cli and exec nest new xx

[System Information]
OS Version     : macOS Catalina
NodeJS Version : v13.11.0
NPM Version    : 6.13.7

[Nest CLI]
Nest CLI Version : 7.0.2

[Nest Platform Information]
😼  cannot read your project package.json file, are you inside your project directory?

@Innei
Copy link
Author

Innei commented Mar 19, 2020

I used yarn to install cli, but this info shows npm version, not yarn. Is this problem caused?

innei at Inneis-MacBook-Pro.local in [~/GitHub/focus-server]  on git:master ✗
19:35:51 › which yarn
/Users/innei/.yarn/bin/yarn

innei at Inneis-MacBook-Pro.local in [~/GitHub/focus-server]  on git:master ✗
19:39:37 › yarn -v
1.22.4

@gaelreyrol
Copy link

I have the same problem

@harlancleiton
Copy link

harlancleiton commented Mar 21, 2020

@Innei @gaelreyrol
I had the same problem
For me it worked:
yarn cache clean
yarn global remove @nestjs/cli
yarn global add @nestjs/cli

@littcc
Copy link

littcc commented Mar 22, 2020

try
yarn global add @nestjs/schematics

@arnesacnussem
Copy link

arnesacnussem commented Mar 23, 2020

same here, use npm i -g @nestjs/cli is complete fine, but if uses yarn global add @nestjs/cli will cause this problem

edit: install with yarn add @nestjs/cli then run with yarn nest will not lead to this too

[System Information]
OS Version : Windows 10 1909 18363.720
NodeJS Version : v12.14.0s
NPM Version : 6.13.4
Yarn Version : 1.22.4

[Nest CLI]
Nest CLI Version : 7.0.2

@kamilmysliwiec
Copy link
Member

I can't reproduce your issue. I've used Docker (node:12 image) with preinstalled Yarn 1.22.0, script:

$ docker run -it --entrypoint /bin/sh node:12 

After running yarn global add @nestjs/cli, I can generate a new application with nest new (as expected).

[System Information]
OS Version     : Linux 4.9
NodeJS Version : v12.16.1
NPM Version    : 6.13.4 

[Nest CLI]
Nest CLI Version : 7.0.2 

I can't reproduce it on my machine either (macOS Catalina, Node 12.13.0)

@PavolHlavaty
Copy link

try
yarn global add @nestjs/schematics

solved it for me

@arnesacnussem
Copy link

arnesacnussem commented Mar 23, 2020

TLDR: just run yarn global add @nestjs/schematics should fix this

I delved a bit deeper and found out that it was because @nestjs/schematics was placed under global/node_modules/@nestjs/cli during yarn global add @nestjs/cli, but when running in docker, it was placed under global/node_modules

And when runnig nest new a ,it call require.resolve(join(name, 'package.json'), { paths: this.paths }), this.paths only contains process.cwd() and global/node_modules/@angular-devkit/schematics-cli/bin when running, so it can't resolve that path on my env,but it can be resolved in docker env.

idk why that module being placed in wrong place...

@afwilliams
Copy link

try
yarn global add @nestjs/schematics

this works for me, thanks

@lampewebdev

This comment has been minimized.

@jiaming0708

This comment has been minimized.

@kamilmysliwiec

This comment has been minimized.

@jiaming0708

This comment has been minimized.

@mikesimps
Copy link

try
yarn global add @nestjs/schematics

When I would run this after already installing the cli, the cli command was not available/removed (not sure why). Installing both at the same time solved it.

yarn global add @nestjs/cli @nestjs/schematics

@ryanmr
Copy link

ryanmr commented Jul 30, 2020

I don't know if it's possible to try/catch this particular code flow path, but if it were, adding a helpful error message would be great.

@DespertaWeb
Copy link

try
yarn global add @nestjs/schematics

This worked for me!
node -v. => v13.14.0
nest -v => 7.4.1

@Shav-webdev
Copy link

This worked for me!
npx @nestjs/cli new project-name

@xgqfrms
Copy link

xgqfrms commented Sep 14, 2020

nest cli bug 🐞

Error: Collection "@nestjs/schematics" cannot be resolved.

Error: Collection "@nestjs/schematics" cannot be resolved.
at NodeModulesEngineHost.resolve (/Users/xgqfrms-mbp/.config/yarn/global/node_modules/@angular-devkit/schematics/tools/node-module-engine-host.js:74:19)
at NodeModulesEngineHost._resolveCollectionPath (/Users/xgqfrms-mbp/.config/yarn/global/node_modules/@angular-devkit/schematics/tools/node-module-engine-host.js:79:37)
at NodeModulesEngineHost.createCollectionDescription (/Users/xgqfrms-mbp/.config/yarn/global/node_modules/@angular-devkit/schematics/tools/file-system-engine-host-base.js:109:27)
at SchematicEngine._createCollectionDescription (/Users/xgqfrms-mbp/.config/yarn/global/node_modules/@angular-devkit/schematics/src/engine/engine.js:147:40)
at SchematicEngine.createCollection (/Users/xgqfrms-mbp/.config/yarn/global/node_modules/@angular-devkit/schematics/src/engine/engine.js:140:43)
at NodeWorkflow.execute (/Users/xgqfrms-mbp/.config/yarn/global/node_modules/@angular-devkit/schematics/src/workflow/base.js:100:41)
at main (/Users/xgqfrms-mbp/.config/yarn/global/node_modules/@angular-devkit/schematics-cli/bin/schematics.js:224:24)
at Object.<anonymous> (/Users/xgqfrms-mbp/.config/yarn/global/node_modules/@angular-devkit/schematics-cli/bin/schematics.js:315:5)
at Module._compile (internal/modules/cjs/loader.js:778:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10)

👎 very bad development experience, why need developer manually install it, it should be the nest cli does things

image

$ yarn global add @nestjs/cli
$ nest new project-name

$ nest -v
# 7.5.1
#  cli bug 🐞
$ yarn global remove @nestjs/cli

$ yarn global add @nestjs/cli
# why need developer manually install it, it should be the nest cli does things
$ yarn global add @nestjs/schematics

image

https://github.com/nestjs/schematics

https://stackoverflow.com/questions/61684382/nestjs-cli-error-collection-nestjs-schematics-cannot-be-resolved

@jmcdo29
Copy link
Member

jmcdo29 commented Sep 14, 2020

Spinning up a fresh Docker container, this isn't reproducible, which means a local config is more than likely the issue.

Check below for the docker commands and logs. I attempted this with both npm and yarn just to make sure it wasn't specific to one package manager.
▶ docker run -it node:latest sh
# npm ls -g --depth=0
/usr/local/lib
-- [email protected]

$ yarn global list --depth=0
yarn global v1.22.5
Done in 0.05s.
$ npm i -g @nestjs/cli
npm WARN deprecated [email protected]: Please see https://github.com/lydell/urix#deprecated
npm WARN deprecated [email protected]: https://github.com/lydell/resolve-url#deprecated
npm WARN deprecated [email protected]: Chokidar 2 will break on node v14+. Upgrade to chokidar 3 with 15x less dependencies.
npm WARN deprecated [email protected]: fsevents 1 will break on node v14+ and could be using insecure binaries. Upgrade to fsevents 2.
/usr/local/bin/nest -> /usr/local/lib/node_modules/@nestjs/cli/bin/nest.js
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@~2.1.2 (node_modules/@nestjs/cli/node_modules/chokidar/node_modules/fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})
npm WARN notsup Unsupported engine for [email protected]: wanted: {"node":"<8.10.0"} (current: {"node":"14.9.0","npm":"6.14.8"})
npm WARN notsup Not compatible with your version of node/npm: [email protected]
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@^1.2.7 (node_modules/@nestjs/cli/node_modules/watchpack-chokidar2/node_modules/chokidar/node_modules/fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})

+ @nestjs/[email protected]
added 513 packages from 352 contributors in 39.743s

$ nest new test-cli
# Chose NPM here
⚡  We will scaffold your app in a few seconds..

CREATE test-cli/.eslintrc.js (663 bytes)
CREATE test-cli/.prettierrc (51 bytes)
CREATE test-cli/README.md (3370 bytes)
CREATE test-cli/nest-cli.json (64 bytes)
CREATE test-cli/package.json (1890 bytes)
CREATE test-cli/tsconfig.build.json (97 bytes)
CREATE test-cli/tsconfig.json (339 bytes)
CREATE test-cli/src/app.controller.spec.ts (617 bytes)
CREATE test-cli/src/app.controller.ts (274 bytes)
CREATE test-cli/src/app.module.ts (249 bytes)
CREATE test-cli/src/app.service.ts (142 bytes)
CREATE test-cli/src/main.ts (208 bytes)
CREATE test-cli/test/app.e2e-spec.ts (630 bytes)
CREATE test-cli/test/jest-e2e.json (183 bytes)

? Which package manager would you ❤️  to use? npm
✔ Installation in progress... ☕

🚀  Successfully created project test-cli
👉  Get started with the following commands:

# $ cd test-cli
# $ npm run start

                                         
                          Thanks for installing Nest 🙏
                 Please consider donating to our open collective
                        to help us maintain this package.
                                         
                                         
               🍷  Donate: https://opencollective.com/nest
                                         
$ npm ls -g --depth=0  
/usr/local/lib
+-- @nestjs/[email protected]
-- [email protected]

$ npm uninstall -g @nestjs/cli

removed 513 packages in 5.67s
$ yarn global add @nestjs/cli
yarn global v1.22.5
[1/4] Resolving packages...
warning @nestjs/cli > webpack > watchpack > watchpack-chokidar2 > [email protected]: Chokidar 2 will break on node v14+. Upgrade to chokidar 3 with 15x less dependencies.
warning @nestjs/cli > webpack > watchpack > watchpack-chokidar2 > chokidar > [email protected]: fsevents 1 will break on node v14+ and could be using insecure binaries. Upgrade to fsevents 2.
warning @nestjs/cli > webpack > micromatch > snapdragon > source-map-resolve > [email protected]: https://github.com/lydell/resolve-url#deprecated
warning @nestjs/cli > webpack > micromatch > snapdragon > source-map-resolve > [email protected]: Please see https://github.com/lydell/urix#deprecated
[2/4] Fetching packages...
info [email protected]: The platform "linux" is incompatible with this module.
info "[email protected]" is an optional dependency and failed compatibility check. Excluding it from installation.
info [email protected]: The platform "linux" is incompatible with this module.
info "[email protected]" is an optional dependency and failed compatibility check. Excluding it from installation.
[3/4] Linking dependencies...
[4/4] Building fresh packages...
success Installed "@nestjs/[email protected]" with binaries:
      - nest
Done in 35.75s.
# Chose yarn here
$ nest new test-cli-yarn
⚡  We will scaffold your app in a few seconds..

CREATE test-cli-yarn/.eslintrc.js (663 bytes)
CREATE test-cli-yarn/.prettierrc (51 bytes)
CREATE test-cli-yarn/README.md (3370 bytes)
CREATE test-cli-yarn/nest-cli.json (64 bytes)
CREATE test-cli-yarn/package.json (1895 bytes)
CREATE test-cli-yarn/tsconfig.build.json (97 bytes)
CREATE test-cli-yarn/tsconfig.json (339 bytes)
CREATE test-cli-yarn/src/app.controller.spec.ts (617 bytes)
CREATE test-cli-yarn/src/app.controller.ts (274 bytes)
CREATE test-cli-yarn/src/app.module.ts (249 bytes)
CREATE test-cli-yarn/src/app.service.ts (142 bytes)
CREATE test-cli-yarn/src/main.ts (208 bytes)
CREATE test-cli-yarn/test/app.e2e-spec.ts (630 bytes)
CREATE test-cli-yarn/test/jest-e2e.json (183 bytes)

? Which package manager would you ❤️  to use? yarn
✔ Installation in progress... ☕

🚀  Successfully created project test-cli-yarn
👉  Get started with the following commands:

# $ cd test-cli-yarn
# $ yarn run start

                                         
                          Thanks for installing Nest 🙏
                 Please consider donating to our open collective
                        to help us maintain this package.
                                         
                                         
               🍷  Donate: https://opencollective.com/nest
                                         

@jmcdo29 jmcdo29 mentioned this issue Sep 14, 2020
@damien-white
Copy link

The behavior listed above is/was(?) 100% a bug. Upgrading the devDependency "@nestjs/schematics" seemed to have fixed it. I updated a few dependencies and things are now working. Nest.js configuration is extremely fragile but I love the framework. You just have to be careful, it is very customizable in most areas but in others, not at all and your project will fail to build and run.

Thanks for the bug fix (it looks like someone fixed it). <3

@BeckXun
Copy link

BeckXun commented Nov 24, 2020

try
yarn global add @nestjs/schematics

It worked, thanks

@dejanbanovic
Copy link

I also ran into the same issue but the workarounds mentioned above didn't help. In my case the problem was, that I was running the command inside the project directory where package.json already existed but had no dependency on @nestjs/schematics.
When I ran the same command (nest new project-name) in a non project directory it executed without problems.

@Bulletninja
Copy link

I keep getting

Unable to resolve @nestjs/schematics:module.
Cannot find module '/<my path>/node_modules/@nestjs/schematics/dist/lib/module/module.factory#main'

@rhzs
Copy link

rhzs commented Jan 30, 2021

Sorry for the spam. But I get the same erro when using yarn.

Screen Shot 2021-01-30 at 17 08 28

Why don't we make a fix and make it just work please? It's been almost a year now.

This is not good, the nest scaffold asking us whether to use yarn or npm indicates that it supports yarn but when we install cli, it is just not working seamlessly.

@jmcdo29
Copy link
Member

jmcdo29 commented Jan 30, 2021

Sorry for the spam. But I get the same erro when using yarn.

Screen Shot 2021-01-30 at 17 08 28

Why don't we make a fix and make it just work please? It's been almost a year now.

This is irritating, the nest scaffold asking us whether to use yarn or npm indicates that it supports yarn but when we install cli, it is just not working seamlessly.

@rhzs This is why. In a clean docker environment, the error isn't reproducible, so there's no way for us to know how to get the error you get. If you can tell us exactly what to do and show that it is indeed reproducible then we can look into it

@rhzs
Copy link

rhzs commented Jan 30, 2021

@jmcdo29 I have tried the way you suggested using Docker with 2 different base images, one alpine and one buster. It works fine.

This seems only happened on MacOs, I use MacOS BigSur 11.1.

Screen Shot 2021-01-30 at 20 58 20

My yarn version 1.22.4

You can test using TravisCI (if you don't have Mac). And you may want to add Mac as environment as part of the NestJS CLI CI to ensure everything works well.

Thank you

@exarus
Copy link

exarus commented Feb 3, 2021

@jmcdo29 it's reproducible in Docker for the latest node.js and yarn 2.

> docker run -it node:latest sh
# yarn set version berry
# yarn dlx -p @nestjs/cli nest new test-nest

@jmcdo29
Copy link
Member

jmcdo29 commented Feb 3, 2021

@jmcdo29 it's reproducible in Docker for the latest node.js and yarn 2.

> docker run -it node:latest sh
# yarn set version berry
# yarn dlx -p @nestjs/cli nest new test-nest

@exarus
This does indeed reproduce the error. It's weird though, as @nestjs/cli correctly sets its dependency on @nestjs/schematics so it seems something in the @angular-devkit/schematics-cli is having a problem resolving the schematic. I'll see if I can dig in more, it doesn't immediately look like this is a yarn berry issue (at least not yet). Though, seeing as only yarn berry causes this, I can't rule that out.

@jmcdo29
Copy link
Member

jmcdo29 commented Feb 3, 2021

Looks like Angular's CLI (which Nest makes use of for nest new thanks to the shcematics builder) doesn't fully yet support yarn pnp, but it is in progress.

@SuperHuangXu
Copy link

try
yarn global add @nestjs/schematics

thanks.

@nestjs nestjs locked and limited conversation to collaborators Jul 27, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests