All Projects β†’ developit β†’ Express Es6 Rest Api

developit / Express Es6 Rest Api

Licence: mit
πŸ”‹ Starter project for an ES6 RESTful Express API.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Express Es6 Rest Api

Express Graphql Mongodb Boilerplate
A boilerplate for Node.js apps / GraphQL-API / Authentication from scratch - express, graphql - (graphql compose), mongodb (mongoose).
Stars: ✭ 288 (-88%)
Mutual labels:  api, mongoose, express, boilerplate
Es6 Express Mongoose Passport Rest Api
Lightweight boilerplate for Node RESTful API, ES6, Express, Mongoose and Passport 🎁
Stars: ✭ 36 (-98.5%)
Mutual labels:  api, mongoose, express, boilerplate
Lad
πŸ‘¦ Lad is the best Node.js framework. Made by a former Express TC and Koa team member.
Stars: ✭ 2,112 (-12.04%)
Mutual labels:  api, mongoose, boilerplate
Api
API Oficial do Te Emprego
Stars: ✭ 73 (-96.96%)
Mutual labels:  api, mongoose, express
Angular Full Stack
Angular Full Stack project built using Angular, Express, Mongoose and Node. Whole stack in TypeScript.
Stars: ✭ 1,261 (-47.48%)
Mutual labels:  mongoose, express, boilerplate
Express Boilerplate
πŸš€ Starter project for a RESTful API in Node with Express & mongoose component-based
Stars: ✭ 9 (-99.63%)
Mutual labels:  mongoose, express, boilerplate
Wertik Js
πŸ’ͺ A library that powers your app with GraphQL + Rest API
Stars: ✭ 56 (-97.67%)
Mutual labels:  api, mongoose, boilerplate
Blog Service
blog service @nestjs
Stars: ✭ 188 (-92.17%)
Mutual labels:  api, mongoose, express
Node Express Mongodb Jwt Rest Api Skeleton
This is a basic API REST skeleton written on JavaScript using async/await. Great for building a starter web API for your front-end (Android, iOS, Vue, react, angular, or anything that can consume an API). Demo of frontend in VueJS here: https://github.com/davellanedam/vue-skeleton-mvp
Stars: ✭ 603 (-74.89%)
Mutual labels:  api, mongoose, express
Express Rest Boilerplate
βŒ›οΈ Express starter for building RESTful APIs
Stars: ✭ 1,794 (-25.28%)
Mutual labels:  mongoose, express, boilerplate
Mern Boilerplate
Fullstack boilerplate with React, Redux, Express, Mongoose, Passport Local, JWT, Facebook and Google OAuth out of the box.
Stars: ✭ 112 (-95.34%)
Mutual labels:  mongoose, express, boilerplate
Node Express Mongoose Passport Jwt Rest Api Auth
Node, express, mongoose, passport and JWT REST API authentication example
Stars: ✭ 146 (-93.92%)
Mutual labels:  api, mongoose, express
Node Express Boilerplate
A boilerplate for building production-ready RESTful APIs using Node.js, Express, and Mongoose
Stars: ✭ 890 (-62.93%)
Mutual labels:  mongoose, express, boilerplate
Laravel Api Boilerplate Jwt
A Laravel 5.8 API Boilerplate to create a ready-to-use REST API in seconds.
Stars: ✭ 1,155 (-51.9%)
Mutual labels:  api, cors, boilerplate
Rest Api Nodejs Mongodb
A boilerplate for REST API Development with Node.js, Express, and MongoDB
Stars: ✭ 672 (-72.01%)
Mutual labels:  api, express, boilerplate
Node Express Mongoose
A boilerplate application for building web apps using node and mongodb
Stars: ✭ 1,221 (-49.15%)
Mutual labels:  mongoose, express, boilerplate
Node Rem
Node REM - NodeJS Rest Express MongoDB and more: typescript, passport, JWT, socket.io, HTTPS, HTTP2, async/await, nodemailer, templates, pagination, docker, etc. Live Demo: https://node-rem-ngduc.vercel.app
Stars: ✭ 192 (-92%)
Mutual labels:  mongoose, express, boilerplate
Spruce
A social networking platform made using Node.js and MongoDB
Stars: ✭ 399 (-83.38%)
Mutual labels:  api, mongoose, express
Create Graphql
Command-line utility to build production-ready servers withΒ GraphQL.
Stars: ✭ 441 (-81.63%)
Mutual labels:  mongoose, express, boilerplate
Ecommerce Nodejs
Ecommerce application back-end codes
Stars: ✭ 97 (-95.96%)
Mutual labels:  mongoose, express, cors

Express & ES6 REST API Boilerplate

This is a straightforward boilerplate for building REST APIs with ES6 and Express.

Tip: If you are using Mongoose, you can automatically expose your Models as REST resources using restful-mongoose.

Getting Started

# clone it
git clone [email protected]:developit/express-es6-rest-api.git
cd express-es6-rest-api

# Make it your own
rm -rf .git && git init && npm init

# Install dependencies
npm install

# Start development live-reload server
PORT=8080 npm run dev

# Start production server:
PORT=8080 npm start

Docker Support

cd express-es6-rest-api

# Build your docker
docker build -t es6/api-service .
#            ^      ^           ^
#          tag  tag name      Dockerfile location

# run your docker
docker run -p 8080:8080 es6/api-service
#                 ^            ^
#          bind the port    container tag
#          to your host
#          machine port   

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].