2.1.1 • Published 9 months ago

express-mapper v2.1.1

Weekly downloads
-
License
ISC
Repository
github
Last release
9 months ago

express-map

Develop your backend faster

How to use

npx create-express-map server
cd server
yarn/npm install

Now open http://localhost:3001/index

Know express mapper

Create a new path for your server

  1. Create a folder in "Routes" like "auth"
  2. in auth, create a Ts file named login
  3. Add the following lines to it
        export default {
                mode: 'get', fun: (req: any, res: any) => {
                    console.log('got req')
                    res.send('hi')
                }
        };
    Now the path /auth/login is live http://localhost:3001/auth/login
2.0.3

9 months ago

2.1.1

9 months ago

2.0.2

9 months ago

2.1.0

9 months ago

2.0.1

9 months ago

2.0.0

9 months ago

1.0.1

10 months ago

1.0.0

10 months ago