0.4.0 • Published 4 years ago

digjoy v0.4.0

Weekly downloads
28
License
MIT
Repository
github
Last release
4 years ago

digjoy

Simple Typescript decorators for express routing with joi validation

Conventional Commits Build Status Coverage Status Maintainability Known Vulnerabilities Greenkeeper badge

Installing

npm i -S digjoy

Motivation

Digjoy was inspired initially on the java framework Spring MVC, it uses Typescript decorators like the old Java annotations to define the routes and methods. You may think "just another controller framework, why should I use it? There is many other with thousands of stars on GitHub...". Well, in fact, it is another controller framework, but it is a very opinionated one, as I see it, it is very easy to use, very straightforward and needs almost no configuration (things that I usually take into account to choose a library). It is ideal for simple APIs, when you just need to define some routes and validate the request body.

Why this weird name?

Digjoy uses Joi to make the request body object validation and every Brazilian 90's children know this song. I don't know why, but every time I hear the word "joi" or use it on code, I remember that great song. If you didn't know that song, feel free to enjoy this masterpiece for a while 😊.

How to use it?

Digjoy exclusively counts on Typescript decorators. So to use it, basically you need to use its decorators then import the controller files in your app entry point. On your controllers definitions, use the Controller decorator:

import { Controller } from 'digjoy';

@Controller('/example')
class Example {}

// it also support express middlewares
@Controller('/example2', middleware1, middleware2)
class Example2 {}

To define some routes, it is simple just like before. You just need to use the HTTP methods decorators above the controller methods. If you need to validate the request body, just pass a Joi schema object as the second parameter. If the params ( query field for GET requests or body field for rest methods) don't follow the schema definition, it will throw a ValidationError.

Attention: your route handlers won't deal with request and response objects from express. The parameters will arrive as the function's arguments, and to respond to the request you just need to return or throw something. Example:

import joi from 'joi';
import { Controller, GET, POST } from 'digjoy';

const paramsSchema = joi.object({
  a: joi.number(),
  b: joi.number(),
});

@Controller('/example')
class Example {
  @GET('/foo')
  private bar() {
    return 'foo bar';
  }

  @GET('/sum', paramsSchema)
  private sum({ a, b }: { a: number; b: number }) {
    return a + b;
  }

  @POST('/sum/:a', paramsSchema)
  private sum({ a, b }: { a: number; b: number }) {
    return a + b;
  }
}

Digjoy supports all HTTTP methods in the same fashion. You just to be aware that when you will be using a GET route, the parameters should be sent as query strings. The other methods (POST, PUT, HEAD, etc), you should send the parameters as the request body.

The last, but crucial, step is to initialize digjoy. You just need to import the function controllerSetup, run it, and import the controllers definitions files. Example:

import { controllerSetup } from 'digjoy';

import './path/to/contollers';

const app = controllerSetup();

The init function controllerSetup accept an options object as parameters. Which have the fields debug (boolean for debugging logs propose) and bodyLimit (for body size limit definition, it follows body-parser rules). Also controllerSetup return an express app instance, which you can use as normal express app to plug in middlewares and extras routes.

import { controllerSetup } from 'digjoy';

import './path/to/contollers';

const app = controllerSetup({ debug: true });
const errorHandler: ErrorRequestHandler = (error, req, res, next) => {
  if ((error as ValidationError).details) {
    res.status(BAD_REQUEST).send(error.message);
  } else {
    res.status(error.status || INTERNAL_SERVER_ERROR).send(error.message);
  }
};
app.use(errorHandler);

app.listen(3000);

Running the tests

Normal tests:

npm run test

Tests with file watch:

npm run test:tdd

Coverage test

npm run test:coverage

Building

npm run build

Built With

  • Typescript
  • Reflect Metadata

Contributing

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

Versioning

We use SemVer for versioning. For the versions available, see the tags on this repository.

Authors

See also the list of contributors who participated in this project.

License

This project is licensed under the MIT License - see the LICENSE file for details

Next Steps

  • Support to in route params: GET /user/:id
  • Support to route specific middleware
  • Better documentation
  • Helpful utilities
0.4.0

4 years ago

0.3.14

4 years ago

0.3.11

4 years ago

0.3.10

4 years ago

0.3.9

4 years ago

0.3.8

4 years ago

0.3.7

4 years ago

0.3.6

4 years ago

0.3.5

4 years ago

0.3.4

4 years ago

0.3.3

4 years ago

0.3.2

4 years ago

0.3.1

4 years ago

0.3.0

4 years ago

0.2.8

4 years ago

0.2.7

5 years ago

0.2.6

5 years ago

0.2.5

5 years ago

0.2.4

5 years ago

0.2.3

5 years ago

0.2.2

5 years ago

0.2.1

5 years ago

0.2.0

5 years ago