All Projects → paralect → koa-api-starter

paralect / koa-api-starter

Licence: other
A starter kit for building Koa.JS based restful api

Programming Languages

javascript
184084 projects - #8 most used programming language
shell
77523 projects
Dockerfile
14818 projects

Projects that are alternatives of or similar to koa-api-starter

ship
A toolkit for makers to ship better products faster 🚀
Stars: ✭ 68 (+19.3%)
Mutual labels:  paralect-stack
stack
A set of components for makers to ship better products faster 🚀
Stars: ✭ 27 (-52.63%)
Mutual labels:  paralect-stack
nextjs-landing-starter
Build your landing site based on Next.JS in minutes 🚀
Stars: ✭ 59 (+3.51%)
Mutual labels:  paralect-stack

Koa.JS REST api starter

Stack

Fully featured Koa.JS restful api starter application. The goal of this project is to solve all routine tasks and keep your focus on the product and business logic of the application, not on the common things, such logging, configuration, dev/production environments

Out of the box support following features:

  1. Config management.
  2. Configured console logger based on common-logger
  3. Automatic application restart when code changes with Nodemon
  4. MongoDB configuration
  5. Docker configuration for development and production environments.
  6. Code linting based on paralect/eslint-config
  7. Simplified request data validation and clean up based on joi and koa-validate
  8. Production ready account API resource (singup, signin, forgot password, reset password functionality)
  9. Access token based authentication.
  10. Tests for endpoints.
  11. WebSocket server (socket.io)
  12. Database migrations
  13. Scheduler

Prerequisites

Google authorization

Fill data from google in src/config/environment/index.js

google: {
  clientId: 'clientId',
  clientSecret: 'clientSecret',
  redirectUri: 'redirectUri',
}

Start

In order to start server in the docker container you can use bash file ./bin/start.sh:

$ ./bin/start.sh

To start the project not in the docker container just run: npm run dev. This command will start the application on port 3001 and will automatically restart whenever you change any file in ./src directory.

Explanations of the files structure

We try to keep things as simple as possible, so you can focus on building product instead of learning concepts.

There are three main directories within project:

  1. src/config - consist of configuration for the environment, koa server and API routes.

  2. src/config/routes - consist of public (don't require access token) and authenticated (require access token) routes and middlewares.

    • middlewares - koa middlewares which we use on every request (for example, get current user data from the database)
  3. src/resources - REST api resources and everything related to the resource:

  4. src/services - application services for various purposes. Not this directory contains the following services:

All other files, that does not fit that structure should be placed straight in the src folder. We can always introduce more folders as we need them. Currently root folder consist following:

  1. src/app.constants.js - constant variables that are used in the application
  2. src/app.js - starting point of the node.js application. It combine application configuration and start Koa http listener.
  3. src/db.js - handles connection to the MongoDB.
  4. src/logger.js - application logger.
  5. src/security.util.js - number of methods for generating secure tokens and comparing passwords with password hash.
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].