GithubHelp home page GithubHelp logo

blanquartf / express-ts-mikro-orm-boilerplate Goto Github PK

View Code? Open in Web Editor NEW
5.0 1.0 4.0 90 KB

A boilerplate designed to build RESTful API with NodeJs & Mikro-Orm & TypeScript by @blanquartf

License: MIT License

Shell 0.87% JavaScript 5.56% TypeScript 93.56%
boilerplate database e2e-tests express-typescript-boilerplate expressjs migrations mikro-orm mocha nodejs postgresql

express-ts-mikro-orm-boilerplate's Introduction

Express Typescript Mikro-Orm Boilerplate

This template can be used as a feature complete server application. Then you can directly develop and not be doing configurations for hours ;)

If you got any feedback, I'm open to suggestions Inspired by some awesome templates from awesome people w3tecch and mikro-orm
Made with love by blanquartf


Features

  • API Testing with included e2e testing.
  • Dependency Injection done with the nice framework from TypeDI.
  • Simplified Database Query with the ORM mikro-orm.
  • Clear Structure with different layers such as controllers, services, repositories, models, middlewares...
  • Easy Exception Handling thanks to routing-controllers.
  • Smart Validation thanks to class-validator with some nice annotations.
  • API Documentation thanks to swagger and routing-controllers-openapi.
  • API Monitoring thanks to express-status-monitor.
  • Integrated Testing Tool thanks to Jest.
  • E2E API Testing thanks to supertest.
  • Basic Security Features thanks to Helmet.
  • Fast Database Building with simple migration from mikro-orm.
  • Easy Data Seeding with our own factories.

❯ Table of Contents

❯ Getting Started

Step 1: Set up the Development Environment

You need to set up your development environment before you can do anything.

Install Node.js and NPM

Install yarn globally

npm install yarn -g

Install a Postgresql database.

If you work with a mac, we recommend to use homebrew for the installation.

Step 2: Create new Project

Fork or download this project. Configure your package.json for your new project.

Then copy the .env.example file and rename it to .env. In this file you have to add your database connection information.

Then copy the .env.test.example file and rename it to .env. In this file you have to add your e2e testing database connection information.

Create new databases with the name you have in your .env-files.

Then setup your application environment.

yarn install

This installs all dependencies with yarn.

Step 3: Serve your App

Go to the project dir and start your app with this yarn script.

yarn dev

This starts a local server using nodemon, which will watch for any file changes and will restart the server according to these changes. The server address will be displayed to you as http://0.0.0.0:3000.

❯ Scripts and Tasks

All script are defined in the package.json file.

Install

  • Install all dependencies with yarn install

Linting

  • Run code quality analysis using yarn lint. This runs tslint.
  • There is also a vscode task for this called lint.

Tests

  • Run the unit tests using yarn test.

Running in dev mode

  • Run yarn dev to start nodemon with ts-node, to serve the app.
  • The server address will be displayed to you as http://0.0.0.0:3000

Building the project and run it

  • Run yarn build to generated all JavaScript files from the TypeScript sources (There is also a vscode task for this called build).
  • To start the builded app located in dist use yarn start.

Execute Database Migrations

  • Run yarn mikro-orm migration:up to execute migrations and setup the database

❯ Debugger in VSCode

To debug your code run yarn dev:debug Then, just set a breakpoint and hit F5 in your Visual Studio Code.

❯ API Routes

The route prefix is /api/v1 by default, but you can change this in the .env file. The swagger and the monitor route can be altered in the .env file.

Route Description
/swagger This is the Swagger UI with our API documentation
/monitor Shows a small monitor page for the server
/api/v1/users Example entity endpoint

❯ Project Structure

Name Description
.vscode/ VSCode tasks for debugging
dist/ Compiled source files will be placed here
logs/ The logs will be placed here
src/ Source files
src/api/controllers/ REST API Controllers
src/api/interceptors/ Interceptors are used to change or replace the data returned to the client.
src/api/middlewares/ Express Middlewares like helmet security features
src/api/models/ Models for communicating with server
src/core/initializers The core initializers like logger and env variables
src/core/middleware The core express middlewares like error handling
src/core/services The core services
src/database/migrations Database migration scripts
src/database/entities Database entities
test/integration/ Integration test with Postgresql
.env.example Environment configurations
.env.test.example Test environment configurations

❯ Logging

Our logger is winston. I created a simple service for injecting the logger in your app (see example below).

import LogService from '../../core/services/LogService';

@Service()
export class UserService {

    constructor(
        public logger: LogService
    ) { }

    ...

❯ Further Documentations

Name & Link Description
Express Express is a minimal and flexible Node.js web application framework that provides a robust set of features for web and mobile applications.
TypeDI Dependency Injection for TypeScript.
routing-controllers Create structured, declarative and beautifully organized class-based controllers with heavy decorators usage in Express / Koa using TypeScript and Routing Controllers Framework.
Mikro-Orm Mikro-Orm is an ORM based on query builder knex.
class-validator Validation made easy using TypeScript decorators.
class-transformer Proper decorator-based transformation / serialization / deserialization of plain javascript objects to class constructors
Helmet Helmet helps you secure your Express apps by setting various HTTP headers. It’s not a silver bullet, but it can help!
Mocha Delightful JavaScript Testing Library for unit and e2e tests
supertest Super-agent driven library for testing node.js HTTP servers using a fluent API
swagger Documentation API Tool to describe and document your api.

❯ License

MIT

express-ts-mikro-orm-boilerplate's People

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.