Bug: Incorrect guideline for npx and yarn installation
Closed this issue · 10 comments
Describe the bug
The current installation instructions in the documentation incorrectly suggest using npm dev
to start the development server.
Expected behavior
Running the command should start the development server as expected. The server should successfully compile the project, enter watch mode, and display any necessary output or logs in the terminal without errors.
Steps to reproduce the bug
Thanks! Fixed in the upcoing PR.
Will merge soon
I’ve also encountered some issues when trying to run yarn install
, so it might need to be fixed.
Hey can you try the latest version of the cli? Would also be helpfull if you can share yarn install errors?
Join us in converse! https://converse.xyz/group-invite/a0XKzl9oVpWNXcuYDZLMf
@kevinsslin Merged !, can you try? You would need to re-install CLI v12.
Message me at fabri.converse.xyz if you have problems, yarn issue seems odd
While running the yarn install
command, I encountered multiple warnings related to missing dependencies and experimental features. The dependencies such as ws@8.1.0, y18n@5.0.8, and others could not be found in the cache and had to be fetched from the remote registry.
src/commands.ts(1,35): error TS2307: Cannot find module '@xmtp/message-kit' or its corresponding type declarations.
src/handler/agent.ts(1,38): error TS2307: Cannot find module '@xmtp/message-kit' or its corresponding type declarations.
src/handler/agent.ts(5,8): error TS2580: Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.
src/handler/agent.ts(6,5): error TS2584: Cannot find name 'console'. Do you need to change your target library? Try changing the 'lib' compiler option to include 'dom'.
...
(Additional errors with `nodemon`):
TypeError: Cannot read properties of undefined (reading 'filename') in nodemon/lib/version.js:17
Node.js v21.7.1
While trying to run yarn dev
, I encountered numerous TypeScript errors, along with missing type declarations for several modules, including @xmtp/message-kit, process, console, and more. You can check the details here: https://app.warp.dev/block/pB0pHPhexIaqoIl45dh7VK
Nice now the CLI messages dont have package manager and the readmes were improved
#106
Already published in v15 of CLI
While running the
yarn install
command, I encountered multiple warnings related to missing dependencies and experimental features. The dependencies such as ws@8.1.0, y18n@5.0.8, and others could not be found in the cache and had to be fetched from the remote registry.src/commands.ts(1,35): error TS2307: Cannot find module '@xmtp/message-kit' or its corresponding type declarations. src/handler/agent.ts(1,38): error TS2307: Cannot find module '@xmtp/message-kit' or its corresponding type declarations. src/handler/agent.ts(5,8): error TS2580: Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`. src/handler/agent.ts(6,5): error TS2584: Cannot find name 'console'. Do you need to change your target library? Try changing the 'lib' compiler option to include 'dom'. ... (Additional errors with `nodemon`): TypeError: Cannot read properties of undefined (reading 'filename') in nodemon/lib/version.js:17 Node.js v21.7.1
While trying to run
yarn dev
, I encountered numerous TypeScript errors, along with missing type declarations for several modules, including @xmtp/message-kit, process, console, and more. You can check the details here: https://app.warp.dev/block/pB0pHPhexIaqoIl45dh7VK
- Can you start a new issue here? Seems you need to install typescript.
- About the warnings they already come with XMTP packages. They are normal
While running the
yarn install
command, I encountered multiple warnings related to missing dependencies and experimental features. The dependencies such as ws@8.1.0, y18n@5.0.8, and others could not be found in the cache and had to be fetched from the remote registry.src/commands.ts(1,35): error TS2307: Cannot find module '@xmtp/message-kit' or its corresponding type declarations. src/handler/agent.ts(1,38): error TS2307: Cannot find module '@xmtp/message-kit' or its corresponding type declarations. src/handler/agent.ts(5,8): error TS2580: Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`. src/handler/agent.ts(6,5): error TS2584: Cannot find name 'console'. Do you need to change your target library? Try changing the 'lib' compiler option to include 'dom'. ... (Additional errors with `nodemon`): TypeError: Cannot read properties of undefined (reading 'filename') in nodemon/lib/version.js:17 Node.js v21.7.1
While trying to run
yarn dev
, I encountered numerous TypeScript errors, along with missing type declarations for several modules, including @xmtp/message-kit, process, console, and more. You can check the details here: https://app.warp.dev/block/pB0pHPhexIaqoIl45dh7VK
- Can you start a new issue here? Seems you need to install typescript.
- About the warnings they already come with XMTP packages. They are normal
I have opened a new issue to track this problem: #107