Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/luohuidong/i18n-tools
https://github.com/luohuidong/i18n-tools
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/luohuidong/i18n-tools
- Owner: luohuidong
- Created: 2023-10-15T14:53:16.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-31T06:51:33.000Z (11 months ago)
- Last Synced: 2024-02-01T03:23:28.167Z (11 months ago)
- Language: TypeScript
- Size: 104 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Node TypeScript Template
- [x] TypeScript
- [ ] CommitLint
- [x] Commitizen
- [x] ESLint
- [x] Prettier
- [x] TypeDoc## Scaffolding your node project
With NPM:
```bash
npm create @app-template/app@latest my-node-project -- --template node
```With PNPM:
```bash
pnpm create @app-template/app@latest my-node-project --template node
```## How to use
### Development
```bash
pnpm dev
```### Production
```bash
pnpm build
```### Testing
Before running tests, make sure you have built the project.
```bash
pnpm dev # or pnpm build
pnpm test # or pnpm test:watch
```