• Stars
    star
    3,267
  • Rank 13,201 (Top 0.3 %)
  • Language
    TypeScript
  • License
    MIT License
  • Created about 7 years ago
  • Updated about 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

DDD/Clean Architecture inspired boilerplate for Node web APIs

What is it

This project is a starting point for you to develop a web API in a scalable way with Node and TypeScript, and was implemented following ideas from layered architecture, Clean Architecture, and Domain-Driven Design. While it contains an opinionated design and structure, it was built to be extensible and flexible so you can modify and adapt it according to your team's needs and preferences.

This version of the boilerplate is still in beta, so might contain abstractions that will change or be missing features. Contribution from the community, either through PRs or is welcome.

Important This is the documentation for the v3 of the boilerplate. Click here if you want the docs for the v2.1.

Usage

How to run the server

During development, the project can be run in two different ways.

If you want to just run the application in development mode, use the following command:

$ yarn dev

To run the application in debug mode in a way that the execution will stop when a debugger statement is called, use:

$ yarn debug

How to run the application console

You can also run the application in console mode, giving you programmatic access to the environment, this can also be done in two different ways.

To run a new instance, isolated from the server, use the following command:

$ yarn cli

For the new instance, you're able to access the dependencies registered in the container using registry.<dependencyName> or through the container variable.

But if you're already running the server (this is a requirement) and you want to a console connected to the process of the server, giving you access to the current state of it, use:

$ yarn remote [server address] [REPL port]

Tests

The boilerplate is prepared to run tests using Jest. We usually group the tests in folders called __tests__ (following Jest convention) for each module of the application. To run the tests use the following command:

$ yarn test

Docker wrapper

In case you want to use Docker to run it, this project includes a docker wrapper for development. Any command can be executed by calling the scripts under the dbin/ folder.

$ dbin/yarn dev

$ dbin/yarn debug

$ dbin/yarn cli

$ dbin/yarn remote [server address] [REPL port]

$ dbin/yarn test

The container runs using host networking, so there's no need to map ports. Keep in mind that environment variables should be added to the docker-compose.yml.

Wrapper commands

# Runs the command inside an ephemeral container using the app service described in the docker-compose file as a base (use the --root flag if the command should be run as root)
$ dbin/run [--root] <command>

# Rebuild the image after any changes to the dockerfile
$ dbin/build

# Remove all containers and their volumes (WARNING any cache or files not stored in the filesystem will be deleted)
$ dbin/dispose

# Appends a RUN command to the base image, useful to install new packages
$ dbin/chimg <command>

Wrapper Aliases

# Creates a new <name> file in dbin to alias the <command> inside the docker container (use the --root flag if the command should be run as root)
$ dbin/mkalias [--root] <name> <command>

# Opens a new terminal in the project folder (use the --root flag if the shell should assume the root user)
$ dbin/shell [--root]

# Runs npm in the project folder
$ dbin/npm

# Runs npx in the project folder
$ dbin/npx

# Runs yarn in the project folder
$ dbin/yarn

Wrapper Helpers

# Adds dbin folder to the PATH only for the current terminal session.
$ source dbin/local-env

# After using this command you can use the any script inside the dbin folder without the dbin/ prefix

Dependency injection

We use Awilix to implement dependency injection and decouple the parts of your application. The boilerplate was developed in a way that each module is able to consume and augment the registered dependencies separately. Click here to know more about inversion of control and dependency injection. The creator of Awilix also has a very good series of posts about the design decisions of the library that you can read clicking here.

The instance of the Awilix dependency container is created in the file src/container.ts. You'll notice that the type of the dependencies is defined by combining the types of the dependencies exported by each of the modules. After that, each of these modules will be then responsible for registering those dependencies in the container during the boot process.

Import paths

In order to make it easier and cleaner to import files we use tsconfig-paths configured to alias the path to the src/ folder as @. For example, if you want to import the file src/article/domain/Article.ts, you can do it through the path @/article/domain/Article.ts no matter from which file you are importing it.

Modules

The codebase is divided into modules, where each module can represent either an integration (with some HTTP or database library, for example) or a feature (that are called here as app modules). Each module requires to be given a name and has access to the configuration options, the logger, the lifecycle events and the the context of the application in order to add and use dependencies from the container. More technical details about the modules will be given in a separate section.

Logging

We use Pino for effective and high performance logging. The instance of the logger is available in the dependency injection container to be used across the board and also is one of the arguments of the module constructor.

Recommended patterns

This boilerplate follows ideas from multiple good software development practices sources like layered architecture, Clean Architecture, Domain-Driven Design, among others. As such, even though it's not required, there are some patterns that are recommended and suggested that work well with the principles that make the boilerplate scalable and extensible. To mention some:

  • We recommend the usage of entities, aggregates and value objects, and other patterns that are used to isolate domain-specific code from the rest of the application code, as mentioned in Domain-Driven Design. To create a standard and practical way to define invariants for entities and aggregates there is a function that can be imported from the lib called withInvariants. Click here to read a brief reference about Domain-Driven Design.
  • To abstract the persistence layer of your application we recommend the usage of the repository pattern. An important fact to take note is that even though the example app in the boilerplate used Mongo, you're not required to use it in your application, you just need to create a module to connect to the database of your preference and implement repositories that communicate with this database
  • To favor a more predictable and explicit definition of domain rules we favor immutable objects and pure functions to define business rules rather than classes. You'll see that most of the code does not expose classes to be used.
  • To export and import domain-specific code we use TypeScript namespaces. We believe it helps in making the code that is imported from the domain easier to read since it will always be prefixed by the name of the context it concerns about, loosely inspired by Elixir modules. We follow the pattern of adding a named export called Type to expose the entity/aggregate/value object from that given file.

Going to production

To run your app in production mode, you'll need to follow these steps:

  1. Build the application with yarn build
  2. Define any environment variable important for production
  3. Start the app with yarn start

How it works

Context

The base of an application built with the boilerplate is the context instance. The context, defined in src/_lib/Context.ts and instantiated in src/context.ts, is what makes all the parts talk to each other and what defines what will be exposed to the modules during their creation, which can be customized by changing the object that is passed to the makeContext function in src/context.ts. Every module that is defined using the function makeModule provided by the same context is able to communicate with each other.

It's important to mention that you are able to have multiple isolated contexts in the same codebase in case you want to have more than one application, they will have isolated dependency containers, modules and will run separately. The context implementation will ensure that modules from different contexts are isolated, so you should not try to plug a module from a given context into a different context's bootstrap function.

Module internals

Modules are the building pieces of an application built with this boilerplate. You can either encapsulate an integration or a feature using a module or any other division you think makes sense for your application. During the boot process of the application, all the modules will be imported and run in the order they are passed to the bootstrap function in src/_boot/index.ts, this order is important because it can influence how a module will depend on another module and in the cleanup process when the app is stopped. When run, a module is able to access the configuration options of the application, the dependency injection container, and register to subsequent lifecycle events of the boot process. If some cleanup logic is needed to be run for a module during the stopping process of the application, the module must return a function that implements this logic, similar to how React implements the cleanup of effects.

Module constructors should be used mostly as simple glue between the integration or feature implementation and the application, prefer to put the actual implementation of the logic inside the _lib/ folder (like database module does with MongoProvider) or a feature folder inside src/ (like we do for the article module) accordingly.

Lib and shared kernel

Besides the feature folders that go inside src/, we also separate abstractions that will be used across the codebase in the _lib/ and _sharedKernel/ folders. Inside _lib/ we usually put code that is not specific to our application, code that could be easily extracted to a npm package if necessary, like abstractions around other packages, reusable generic types and the such. For application-specific reusable logic between multiple modules we use the _sharedKernel/ folder. To understand more about what the shared kernel is, we recommend reading the DDD quick reference section about it.

Boot

The boot process consists of setting up all the necessary code for the application to run, including running the modules and going through the lifecycle events. The files used during the boot process are all inside the _boot/ folder, including the definition of the integration modules, but the abstractions created for this, like the context, are imported from the lib. To understand more about the booting process begin looking into the src/context.ts file and then the src/_boot/index.ts file.

Lifecycle events

Both the boot and stopping processes are defined as a sequence of lifecycle events. These events exist in order to make these processes explicit and allow the modules to hook into them to properly integrate them into the application execution. Here's the order of lifecycle events for the boot and the stopping processes, we're gonna cover how to hook into an event in the next section.

Boot:

  1. Booting:
  • The booting event is dispatched once the function bootstrap is called in src/_boot/index.ts
  • The modules are invoked during this lifecycle step, so by the time each module is invoked this lifecycle event was already dispatched
  • It's not possible for a module to hook into this event because it's run by the context to declare that the boot process is started
  • Mostly for internal usage to prepare the rest of the boot process
  1. Booted:
  • When this event is dispatched it's a message to let the modules know that all the modules were already invoked and had already hooked into the other lifecycle events
  • This is a good place to register error handlers because every module has already registered its routes when they were invoked
  • Use this event to do anything you might need after all the module constructors are done running
  1. Ready:
  • This lifecycle event happens after all the listeners for the booted event were run
  • This is the proper place to actually start things, like starting the server, make queue consumers start listening to messages, or waiting for commands in case the app is running in REPL mode
  1. Running:
  • After everything from the ready event is done, the app is now actually running
  • A good usage for this lifecycle event is to know if the app is already prepared to be accessed during the setup of an automated test or offer info about the process in the console

Stopping

  1. Disposing
  • It's during this lifecycle event that the cleanup functions returned by the modules will be run
  • To make the cleanup process consistent, the cleanup functions are run in the inverse order their modules were passed to the bootstrap function. So if your app uses bootstrap(database, server), during the disposing process the cleanup function of the server module will be called first and then the database one.
  • As an example, this is where the server is stopped and the database connections are closed
  • It's intended to be used to revert everything initialized during Booting lifecycle event
  1. Disposed
  • By the time Disposed event is dispatched, we expect that everything that keeps the process open is already finished, leaving it in a safe state to be terminated
  • You could use this event to clean temporary files, for instance
  1. The application should now be completely stopped and the process is terminated

To be able to hook into lifecycle events, access the property app in the object passed to the constructor of the modules. The app object contains a function for each lifecycle, prefixing it with the word on. So, for example, to hook into the Booted event, call app.onBooted(callback).

More Repositories

1

react-laravel

Package for using ReactJS with Laravel
PHP
900
star
2

react-katex

Display math in TeX with KaTeX and ReactJS
JavaScript
410
star
3

structure

A simple schema/attributes library built on top of modern JavaScript
JavaScript
301
star
4

CommonRegexJS

Find a lot of kinds of common information in a string. CommonRegex port for JavaScript
JavaScript
150
star
5

react-redux-ddd

Just an experiment
JavaScript
88
star
6

CommonRegexRuby

Find a lot of kinds of common information in a string. CommonRegex port for Ruby
Ruby
79
star
7

emittr

A Ruby event emitter implementation.
Ruby
71
star
8

i18node

I18n library for Node.js with support for plurals and genders
JavaScript
65
star
9

jsT9

A text-prediction JavaScript tool
JavaScript
64
star
10

WolverineJS

Useful library for server-side logging
JavaScript
39
star
11

react-predict

ReactJS for input with autocomplete based on list of words
JavaScript
36
star
12

php-babel-transpiler

Transform JavaScript with Babel from PHP
PHP
31
star
13

CommonRegexJava

CommonRegex port for Java
Java
20
star
14

isomorphic-alt-boilerplate

Isomorphic app boilerplate with React + Alt
JavaScript
16
star
15

frontend-architecture-jsconf-chile-2023

Frontend architecture - JSConf Chile 2023
TypeScript
16
star
16

react-laravel-example

An example of how to use react-laravel package
PHP
14
star
17

backbone-dispatcher

A Flux dispatcher for using with Backbone
JavaScript
14
star
18

jsAutoSuggest

Autosuggest JavaScript tool using jsT9
JavaScript
11
star
19

jquery-flux-todo

Experiment on creating a jQuery app with Flux architecture
JavaScript
7
star
20

angular-blog-app

Simple blog app for learning Angular
JavaScript
6
star
21

generator-iso-alt

Generator for isomorphic flux apps with React and Alt
JavaScript
6
star
22

Fraction

C++ lib for use of Fractions instead of float type
C++
4
star
23

umd-templates

UMD pattern templates for gulp-umd compliants
JavaScript
4
star
24

ruby_ddd

Just an experiment
Ruby
3
star
25

wingpanel-indicator-services

Vala
3
star
26

flux-tracker

JavaScript
3
star
27

react-unit-testing

An example of how to unit test React components
JavaScript
3
star
28

joi-repro

JavaScript
2
star
29

componentized-angular

JavaScript
2
star
30

drunk-postman

JavaScript
2
star
31

di-brown-bag

JavaScript
2
star
32

quake-log-parser-haskell

Haskell
2
star
33

phactory-laravel

Use Phactory inside Laravel
PHP
2
star
34

front-end-boilerplate

My boilerplate for front-end projects
JavaScript
2
star
35

cordova-hooks

My personal Cordova/Phonegap hooks
JavaScript
2
star
36

isomorphic-experiences

Experiences for isomorphic approaches
PHP
2
star
37

ee

Experimental event emitter
JavaScript
2
star
38

jquery-pluginconfig

A jQuery plugin that help use data attributes for configuration
JavaScript
2
star
39

room-word-sample

Kotlin
1
star
40

fluxmaker

[WIP]
JavaScript
1
star
41

ruby_error_repository_example

Ruby
1
star
42

express-ajax-only

Express middleware for only accept AJAX request for a given URL
JavaScript
1
star
43

MaMoney

Money control app
Ruby
1
star
44

enemyBoxes

jQuery extensions for make a set of checkboxes that can't be checked at the same time.
JavaScript
1
star
45

c_ddd

It's an experience, don't take it seriously
C
1
star
46

java_ddd

This is just an experience for a study group
Java
1
star
47

express-secure-only

Express middleware for only accept secure requests (i.e. HTTPS requests)
JavaScript
1
star
48

reproduce-sequelize-bug

JavaScript
1
star
49

BackboneFluxTests

Tests mixing Backbone and Flux architecture
JavaScript
1
star