Koa middleware that sets the content type of the response to application/json.
const Koa = require('koa');
const setContentTypeJson = require('@diegoh/api-middleware-content-type-json');
const app = new Koa();
app.use(setContentTypeJson());- Create a new branch from
masterwith a name relevant to the changes you're making.git branch -b my-new-feature-description - Push the branch and open a Pull Request (PR).
- Request a code review.
npm run test:unit
npm run test:coverage
npm run lint or npm run lint:fix to automatically fix any linting issues.