Found 704 repositories(showing 30)
javieraviles
REST API boilerplate using NodeJS and KOA2, typescript. Logging and JWT as middlewares. TypeORM with class-validator, SQL CRUD. Docker included. Swagger docs, actions CI and valuable README
EQuimper
A boilerplate for kickstart your nodejs api project with JWT Auth and some new Techs :)
cornflourblue
NodeJS + MongoDB - Boilerplate API with Email Sign Up, Verification, Authentication & Forgot Password
A minimal and easy to follow example of what you need to create a CRUD style API in NodeJs using TypeScript
vyancharuk
🛠️ A production-ready LLM-Powered Node.js & TypeScript REST API template, with a focus on Clean Architecture
toantranmei
A delightful way to building a Node.js RESTful API Services with beautiful code written in Vanilla Javascript
rootstrap
REST API boilerplate made with Express + NodeJS
bytesleo
NEW VERSION HERE https://github.com/kevoj/nodetomic RESTful API Nodejs designed for horizontal scalability with support for cluster, based on Express, MongoDB, Redis, JWT, Socket.io, Passport.
trungquandev
RESTful API Node Server Boilerplate (ExpressJS, MongoDB, BabelJS...vv) Đây là bộ code base để bắt đầu học viết các API chuẩn chỉnh trong khóa "MERN Stack Pro - Lập Trình qua dự án thực tế code con Trello Kéo Thả" trên YouTube của mình nhé các bạn!
cornflourblue
NodeJS + MySQL - Boilerplate API with Email Sign Up, Verification, Authentication & Forgot Password
erictherobot
Boilerplate for NodeJS + ExpressJS 4.x + MongoDB + Jade + Bootstrap 3 + Mocha + API's
itsmunim
The simple but essential boilerplate you wanted for API development in NodeJS
A REST API Boilerplate using Nodejs, Expressjs, and PostgreSQL
scopsy
A modern nodejs api boilerplate with typescript
Nodejs-Typescript / Express / GraphQL / MongoDB API Boilerplate.
ofuochi
An enterprise startup boilerplate for typescript and nodejs API project
itsdheerajbudhiraja
Boilerplate for NodeJS Express Projects written in Typescript The purpose of this template repository is to fast track APIs development and reach to production ASAP. At most places except TSOA, there is very less use of external dependency injection or similar libraries to demonstrate how same thing can be achieved in vanilla code
valentinchelle
A NodeJs boilerplate that implements Google, Facebook and classic Authentication following the best practices. Clear endpoints, easy to use, perfect to start a project quickly. Provides an example front end in ReactJS.
Gabriel-Valin
Script to automate Clean Arch API boilerplate with NodeJS, Jest, Supertest & Typescript.
DasithKuruppu
🌩️ Boilerplate for typescript/nodejs on AWS using serverless yml templates with graphQL as the API backed by dynamod & elastic search
rblalock
REST API Boilerplate for Node.js / Express
DevUnderflow
Nx Nodejs Apollo - TypegraphQL / GraphQL / Express / MongoDB - Typegoose API Boilerplate
Node.js-Express-Sequelize-PM2-MySQL-API Boilerplate is a pre-configured template for building web applications based on Node.js. This project is created to help API developers save time.
vukhanhtruong
Structuring Node.js RESTful API with ES6, JWT, and some of useful tech...
maitraysuthar
A boilerplate for React JS with Redux and Saga. Backend for this structure: https://github.com/maitraysuthar/rest-api-nodejs-mongodb
kevquincke
API boilerplate project for NodeJS with Typescript
Mamena2020
Fastest way to Build REST APIs with no Budget. Boilerplate for Nodejs x Firebase.
nick-csu
NodeJS API Server Seed - ES6 production-ready boilerplate with support for Sequelize and Swagger Documentation
Monorepo boilerplate using RESTful api (nodejs, typescript, express, mongoose), REACT and Yarn Workspaces to manage dependencies
VakinduPhilliam
NodeJS Clean Architecture. Clean Architecture is an opinionated boilerplate for Node web APIs focused on separation of concerns and scalability with Uncle Bob Clean Architecture implementation. Features: > Union - Layered folder structure: code organization focused on codebase scalability. > Instant feedback and reload: use Nodemon to automatically reload the server after a file change when on development mode, makes the development faster and easier. > Scalable and easy to use web server. > Use Express for requests routing and middlewares. There are some essential middlewares for web APIs already setup, like body-parser, compression, and method-override. > Database integration: Mongoose, a MongoDB Database Connection, is already integrated; you just have to set the authentication configurations. > Prepared for testing: The test suite uses Mocha, Chai and is prepared to run unit, integration and functional tests right from the beginning. A FactoryGirl adapter for Mongo is setup to make your tests DRY as well, and the tests generate code coverage measurement with. You should read about the Chai plugins that are setup by default too. > Dependency injection: With Awilix, a practical dependency injection library, the code will not be coupled and it'll still be easy to resolve automatically the dependencies on the runtime and mock them during the tests. It's even possible inject dependencies on your controllers with the Awilix Express adapter. >Logging: The Log4js logger is highly pluggable, being able to append the messages to a file during the development and send them to a logging service when on production. Even the requests (through Morgan) and queries will be logged. > Linter: It's also setup with ESLint to make it easy to ensure a code styling and find code smells. How to use: Notice that the boilerplate comes with a small application for user management already; you can delete it with a npm script after you understand how the boilerplate works but please do the quick start first! 1. Clone the repository. 2. Setup the database on `config/database.js` (there's an example file there to be used with MongoDB). 3. Install the dependencies with `yarn`. 4. Create the development and test databases you have setup on `config/database.js` 5. Run the application in development mode with `npm run dev` 6. Access `http://localhost:3000/api/users` and you're ready to go! Compiled and presented by Vakindu Philliam.