Skip to content

CLI tool for scaffold a new Node.js project in seconds

License

Notifications You must be signed in to change notification settings

nodex-labs/create

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

@nodex-labs/create

Blazing-fast Node.js project scaffolding

npm License

🚀 Quick Start

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

✨ Features

  • Zero-config templates for popular Node.js frameworks
  • Interactive prompts to customize setup
  • Batteries-included with best practices pre-configured

🤝 Contributing

  1. Fork the repository
  2. Add templates to your own Github account
  3. Add the package deetails and repo URL to constants/templates.js without the https://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
};
  1. Submit a PR!

📜 License

MIT © Nodex Labs