Skip to content

Latest commit

 

History

History
44 lines (30 loc) · 809 Bytes

File metadata and controls

44 lines (30 loc) · 809 Bytes

🚀 Express Node Template

A minimal and clean Node.js + Express starter template to kickstart API development with ease.

📦 Features

  • 🔐 User Authentication

    • Login & Register
    • Access & Refresh Tokens (JWT-based)
  • 🛡️ Authorization

    • Simple Role-based Access Control (RBAC)
  • 🧰 Developer-Friendly

    • Simple and easy-to-understand project structure

🎯 Perfect for

  • Quick API prototypes
  • Learning backend basics with auth
  • Starting a solid backend foundation

⚙️ Getting Started

1. Clone the repository

git clone https://github.com/your-username/express_node_template.git
cd express_node_template

2. Setup environment variables

cp .env.example .env

3. Start the project

npm install
npm start