@ssit-hub/mvp-generate-template
Version:
A beautiful CLI tool to quickly generate MVP project templates with modern frameworks and best practices
57 lines (37 loc) • 804 B
Markdown
# Basic Node.js Application
A simple Node.js application template with basic functionality.
## Features
- Basic Node.js setup
- Environment variable support
- Error handling example
- Development with nodemon
## Getting Started
### Prerequisites
- Node.js >= 16.0.0
- npm >= 7.0.0
### Installation
1. Install dependencies:
```bash
npm install
```
### Running the Application
#### Development mode (with auto-restart):
```bash
npm run dev
```
#### Production mode:
```bash
npm start
```
## Project Structure
```
src/
├── index.js # Main application entry point
```
## Environment Variables
- `PORT` - Port number for the application (default: 3000)
## Scripts
- `npm start` - Run the application
- `npm run dev` - Run in development mode with auto-restart
## License
MIT