The fastest way to scaffold production-ready Node.js apps
(Like create-react-app
or vite
, but for backend!)
npm create @nodex-labs
# or
npm init @nodex-labs
# or
npx @nodex-labs/create
- Zero-config templates for popular Node.js frameworks
- Interactive prompts to customize setup
- Batteries-included with best practices pre-configured
- Fork the repository
- Add templates to your own Github account
- Add the package deetails and repo URL to
constants/templates.js
without thehttps://github.com/
prefix
const EXPRESS_TEMPLATES = [
{
name: 'Express Basic App',
value: 'express-basic',
description: 'Basic Express.js project',
},
{
// Template added by you
name: 'Express Advanced App',
value: 'express-advanced',
description: 'Advanced Express.js project',
}
];
const GITHUB_REPO_TEMPLATES = {
'express-basic': 'nodex-labs/template-express-basic.git',
'express-advanced': 'your-username/template-express-advanced.git', // Your template URL from your Github
};
- Submit a PR!
MIT © Nodex Labs