https://github.com/ackeecz/create-node-app
Installer for Node.js apps.
https://github.com/ackeecz/create-node-app
backend
Last synced: about 2 months ago
JSON representation
Installer for Node.js apps.
- Host: GitHub
- URL: https://github.com/ackeecz/create-node-app
- Owner: AckeeCZ
- License: mit
- Created: 2022-11-04T12:09:38.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2025-08-01T13:32:27.000Z (2 months ago)
- Last Synced: 2025-08-01T15:37:13.776Z (2 months ago)
- Topics: backend
- Language: TypeScript
- Homepage:
- Size: 649 KB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
- Authors: AUTHORS
Awesome Lists containing this project
README

# Create Node App
CLI to help you set up Node.js TypeScript project. Set up project includes
- code style tools (prettier, lint)
- testing (using jest)
- infrastructure files of your choice (Docker, etc.)
- GitLab CI and npm ci-\* scripts (for Ackee CI/CD pipelines)## Usage
Run directly from GitHub repo via npx:
```
Usage: npm exec --ignore-scripts -- github:AckeeCZ/create-node-app STARTER [OPTIONS] [DIRECTORY]STARTER Which template to setup (required)
Options:
--dir, -d DIR Destination directory (default: ./node-app)
--project-name, -n NAME Google Cloud project name (default: directory basename)
--force, -f Overwrite existing destination directory if it's not empty
--help, -h Show this help messageStarters available:
cloudrun Cloud Run + express
cloudrun-graphql Cloud Run + graphql
```Supported starter templates:
- [Cloud Run](./starter/cloudrun/README.md)
- [GraphQL Cloud Run](./starter/cloudrun-graphql/README.md)