Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dishait/ndeno
js runtime project management tool / js runtime 项目管理工具
https://github.com/dishait/ndeno
deno nodejs npm pm pnpm yarn
Last synced: about 2 months ago
JSON representation
js runtime project management tool / js runtime 项目管理工具
- Host: GitHub
- URL: https://github.com/dishait/ndeno
- Owner: dishait
- License: mit
- Created: 2022-12-11T09:02:12.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-24T04:20:02.000Z (5 months ago)
- Last Synced: 2024-10-28T12:17:13.518Z (2 months ago)
- Topics: deno, nodejs, npm, pm, pnpm, yarn
- Language: TypeScript
- Homepage: https://deno.land/x/ndeno
- Size: 249 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ndeno
js runtime project management tool
## README
English | [简体中文](./README_CN.md)
## Motivation
I wish there was a command tool that could smooth out the differences between
`npm`, `yarn`, `pnpm`, and other `node` project package managers, and `deno`
when used.
## Usage
### install
```shell
deno install --allow-read --allow-env --allow-run --allow-write -rfn n https://deno.land/x/ndeno/mod.ts
```Of course, if you don't have Deno installed 👇
```shell
npx deno-npx install --allow-read --allow-env --allow-run --allow-write -rfn n https://deno.land/x/ndeno/mod.ts
```### nodejs
you can use `npm install ndeno -g` to install `ndeno` globally. (In a pure
nodejs environment)### daily
Automatically determine the package manager of the project, without worrying
```shell
n # Amount to npm install
``````shell
n i express # Amount to npm install express
``````shell
n dev # Amount to npm run dev
``````shell
n -h # View current usage information
```### uinstall
```shell
deno uninstall n
```
## License
Made with [markthree](https://github.com/markthree)
Published under [MIT License](./LICENSE).