Naibuu / express-starter

⚙️ A clean starter setup for express, ideal for quickly setting up backend systems and more.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Express starter

A clean starter setup for express, ideal for quickly setting up backend systems and more.

Important

It is recommended to use Node v16 or newer.

▲ Deploying to Vercel

To deploy this app to Vercel, create a config similar to the one shown below.

{
    "name": "NAME",
    "version": 2,
    "builds": [
        {
            "src": "/src/index.ts",
            "use": "@vercel/node"
        }
    ],
    "routes": [
        {
            "src": "/(.*)",
            "dest": "/src/index.ts"
        }
    ]
}

About

⚙️ A clean starter setup for express, ideal for quickly setting up backend systems and more.

License:MIT License


Languages

Language:TypeScript 100.0%