Package Exports
- @overnightjs/logger
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@overnightjs/logger) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
OvernightJS
TypeScript decorators for the ExpressJS Web Server!
What is it
OvernightJS is a simple library to add TypeScript decorators for methods meant to call Express routes. It also includes a package for managing json-web-tokens and showing logs.
Features
- Define a base route using a @Controller decorator.
- @Get, @Post, @Put, and @Delete decorators to convert controller methods into Express routes.
- @Middleware and @ClassMiddleware decorators.
- Decorators also work with arrow functions set as class properties.
- Server superclass to initialize ExpressJS server and setup controllers.
- Json-Web-Token management.
- Easy to configure logging tool.
- Master repo includes a sample application, if you want to practice with an API calling tool such as Postman.
- Allows for adding your own custom Router classes if you don't want to use the standard express Router.
- Compatible when transpiling to either es5 or es6.
- Fully type safe :)
Why OvernightJS
OvernightJS isn't meant to be a replacement for Express. If you're already somewhat familiar with ExpressJS, you can learn Overnight in about 10 minutes. There are some other frameworks which do add decorators for Express such as NestJS and TsExpressDecorators, but these are massive frameworks with entire websites dedicated to their documentation. OvernightJS is clean, simple, and aside from the decorators, you can interact with ExpressJS in the same way you would any other Node application.
Table of Contents
Installation
You can get the latest release using npm:
$ npm install --save @overnightjs/core express
$ npm install --save-dev @types/expressImportant! OvernightJS requires Node >= 6, Express >= 4, TypeScript >= 2.0 and the
experimentalDecorators,libcompilation options in yourtsconfig.jsonfile.
Quick start
Create your controller
import { Request, Response, NextFunction } from 'express';
import { Controller, Get, Post, Put, Delete, Middleware } from '@overnightjs/core';
@Controller('api/users')
export class UserController {
@Get(':id')
get(req: Request, res: Response): any {
console.log(req.params.id);
return res.status(200).json({msg: 'get_called'});
}
@Get()
@Middleware(middleware)
private getAll(req: Request, res: Response): void {
res.status(200).json({msg: 'get_all_called'});
}
@Post()
private add(req: Request, res: Response): void {
res.status(200).json({msg: 'add_called'});
}
@Put('update-user')
@Middleware([middleware1, middleware2])
private update(req: Request, res: Response): void {
res.status(200).json({msg: 'update_called'});
}
// Next param is optional
@Delete('delete/:id')
private delete(req: Request, res: Response, next: NextFunction): void {
res.status(200).json({msg: 'delete_called'});
}
// async/await work normally :)
@Get('practice/async')
private async getWithAsync(req: Request, res: Response): Promise<void> {
let msg;
try {
msg = await this.someMethodWhichReturnsAPromise(req);
} catch (err) {
msg = err;
} finally {
res.status(200).json({msg: msg});
}
}
}- You don't have to use class methods, you can also use class properties whose value is an arrow function. You will have to cast Overnight to the 'any' type to avoid type errors though
import * as OvernightJS from '@overnightjs/core';
...
@(OvernightJS as any).Get('arrow/:id')
private get = (req: Request, res: Response) => {
this.logger.info(req.params.id);
return res.status(200).json({msg: 'get_arrow_called'});
}- If want want your middleware to apply to every route in a class use the
@ClassMiddlewaredecorator.
import { Controller, ClassMiddleware } from '@overnightjs/core';
@Controller('api/users')
@ClassMiddleware([middleware1, middleware2])
export class UserController {
...
}Import your controller into the server
OvernightJS provides a Server superclass which initializes a new ExpressJS application. The express
object is accessed using this.app, which is a protected, readonly class variable. You can interact
with this variable like you would any normal express Application created with require('express')().
The reason the controllers are not imported and setup for you automatically is the server is meant to
be a place where you hook everything together. Suppose for example that you want to add the same database
connection instance to several of your controllers at once. This setup let's you do that before
initializing all of your controller routes.
super.addControllers() must be called to enable all of the routes in your controller. Make sure to
call it after setting up your middleware. You can pass super.addControllers() a single controller-instance
or an array of controller-instances.
import * as bodyParser from 'body-parser';
import { Server } from '@overnightjs/core';
import { UserController } from './UserController';
import { SignupController } from './SignupController';
export class SampleServer extends Server {
constructor() {
super();
this.app.use(bodyParser.json());
this.app.use(bodyParser.urlencoded({extended: true}));
this.setupControllers();
}
private setupControllers(): void {
const userController = new UserController();
const signupController = new SignupController();
const dbConnObj = new SomeDbConnClass('credentials');
signupController.setDbConn(dbConnObj);
userController.setDbConn(dbConnObj);
// This must be called, and can be passed a single controller or an array of
// controllers. Optional router object can also be passed as second argument.
super.addControllers([userController, signupController]);
}
public start(port: number): void {
this.app.listen(port, () => {
cimp('Server listening on port: ' + port);
})
}
}See how awesome this is!
Without the above decorators we would have to wrap each controller method with something like:
/* In the controller file*/
class UserController {
public getRoutes(): Router {
const router = Router();
router.get('/', your middleware, (req, res) => {
// Do some stuff in here
});
router.get('/anotherRoute', your middleware, (req, res) => {
// Do some stuff in here
});
// Repeat for every single controller method
return router;
}
}
let userController = new UserController();
this.app.use('/api/users', userController.getRoutes());
// Repeat for every single controller classThis would get really tedious overtime and lead to a lot of boiler plate code.
Using a Custom Router
Suppose you don't want to use the built in "Router" object which is provided by Express. Maybe you
don't like using async/await or having to call .catch() if you're not using try/catch blocks. Maybe
you're using a library like express-promise-router to handle the route callbacks. OvernightJS allows
you to pass in a custom router object in the super.addControllers() method. Simply pass in your
custom router as the second param after the controller-instance/s. When you don't specify a custom
router, the default express.Router() object is used.
- Controller using express-promise-router:
import { Request, Response } from 'express';
import { Controller, Get, Put } from '@overnightjs/core';
@Controller('api/posts')
export class PostController {
private readonly INVALID_MSG = 'You entered an invalid post id: ';
private readonly VALID_MSG = 'You entered the post id: ';
@Get(':id')
private get(req: Request, res: Response): Promise<Response> {
return this.someAsyncFunction(req.params.id)
.then(ret => res.status(200).json({msg: ret}));
}
private someAsyncFunction(id: number): Promise<string> {
return new Promise((res, rej) => {
isNaN(id) ? rej(this.INVALID_MSG + id) : res(this.VALID_MSG + id);
})
}
@Put(':id')
private add(req: Request, res: Response): Promise<string> {
return Promise.resolve('next');
}
@Put('foo')
private add2(req: Request, res: Response): void {
res.status(200).json({msg: 'Route used: ' + req.url});
}
}- Add express-promise-router in the
super.addControllers()method:
import * as customRouter from 'express-promise-router';
import { Server } from '@overnightjs/core';
import { PostController } from './controllers/PostController';
export class CustomRouterServer extends Server {
private readonly START_MSG = 'OvernightJS with custom router started on port: ';
constructor() {
super();
const postController = new PostController();
super.addControllers(postController, customRouter);
}
public start(port: number): void {
this.app.listen(port, () => {
console.log(this.START_MSG + port);
})
}
}OvernightJS/jwt
What is it
This is an easy tool for removing boilerplate code around json-web-tokens (jwt). You can get your token and middleware with just one line of code. @overnightjs/core is a sister library to add TypeScript decorators for methods meant to call Express routes and is not required for @overnightjs/jwt but they do work beautifully together.
Features
JwtManagerclass which, when when used statically, can pull the JWT expiration and secret from the environment variables.- When used as an instance-object,
JwtManagercan be dynamically passed the JWT expiration and secret if you prefer to set them through the code. - Default values for the secret and expiration when used statically. This is convenient for a development environment.
- Fully type-safe :)
Installation
$ npm install --save @overnightjs/jwt express
$ npm install --save-dev @types/express @types/express-jwt @types/jsonwebtokenTable of Contents
Option 1: Environment Variables
This is what really saves you from having to do boilerplate code. The two environment variables you need to set are OVERNIGHT_JWT_SECRET and OVERNIGHT_JWT_EXP. OVERNIGHT_JWT_SECRET should be a really long, random string (recommended is 80 characters) and the rules for setting OVERNIGHT_JWT_EXP are the same as setting the expiration time for the jsonwebtoken library. The rules are:
If you use a string be sure you provide the time units (days, hours, etc), otherwise milliseconds is used by default ("120" is equal to "120ms"). Examples: "2 days", "10h", "7d".
How you set your environment variables will vary depending on the which environment you are working in. I use Ubuntu which is pretty easy. Just open the /etc/environment file and type:
OVERNIGHT_JWT_SECRET="your super long random string"
OVERNIGHT_JWT_EXP="your expiration time"
Another common option is the dotenv library, which imports environment variables from a .env file
If you do not set these environment variables, a default value of '3 days' will be set for the expiration time and a
random string will be generated for the secret. The random string is fine for development but do not use it for
production. Every time you restart the server the secret will change and all client-side JWTs will become invalid.
Now let's create the controller. The data that is encrypted is stored as the payload property. That's all there is to it.
Just import JwtManager.
import { JwtManager, ISecureRequest } from '@overnightjs/jwt';
import { Controller, Middleware, Get, Post } from '@overnightjs/core';
import { Request, Response } from 'express';
@Controller('api/jwt')
export class JwtPracticeController {
@Get(':email')
private getJwt(req: Request, res: Response): void {
const jwtStr = JwtManager.jwt({
email: req.params.email
});
res.status(200).json({jwt: jwtStr});
}
@Post('callProtectedRoute')
@Middleware(JwtManager.middleware)
private callProtectedRoute(req: ISecureRequest, res: Response): void {
res.status(200).json({email: req.payload.email});
}
}Option 2: Pass through the constructor
If you want to set your secret and expiration time manually, you can instantiate the JwtManager class
and set them via the constructor. I love using Option 1 way more, but I thought I'd supply this option
for people who prefer to import it another way.
import { JwtManager, ISecureRequest } from '@overnightjs/jwt';
import { Controller, Middleware, Get, Post } from '@overnightjs/core';
import { Request, Response } from 'express';
const jwtMgr = new JwtManager('secret', '10h');
@Controller('api/jwt')
export class JwtPracticeController {
@Get('getJwtAlt/:fullname')
private getJwtFromHandler(req: Request, res: Response): void {
const jwtStr = jwtMgr.jwt({
fullName: req.params.fullname
});
res.status(200).json({jwt: jwtStr});
}
@Post('callProtectedRouteAlt')
@Middleware(jwtMgr.middleware)
private callProtectedRouteFromHandler(req: ISecureRequest, res: Response): void {
res.status(200).json({fullname: req.payload.fullName});
}
}Works just as fine in regular Express
You dont have to use @overnightjs/jwt with @overnightjs/core. If you're using Express but are not
interested in using decorators, you can pass the middleware just the same as you would for any typical
Express Router object.
const router = express.Router();
router.get('users', JwtManager.middleware, (req, res) => {
console.log(req.payload.email);
})
app.use('/', router); OvernightJS/logger
Despite the abundance of logging tools out there, knowing exactly which is the right one for your
web-server, might take more time than you feel like spending. So you can start logging events right
away, OvernightJS comes with its own logging package. From the environment variables you can easily
switch your logs to be printed out to the command line, a file, sent through your own custom logging
logic, or turned off completely. Logs printed to the console also are printed out in different colors
depending on whether they're a warning, error, etc. The file for holdings logs can be specified manually
or left as the default. Let's check it out!
Installation
$ npm install --save @overnightjs/loggerGuide
There's not as much to /logger as there was for /core and /jwt, so we're just going to quickly
go over what each method does and how to set it up. The logger package's main export is the
Logger class. You will have separate instances of Logger throughout your project but they will
all pull from the same environment-variables. The variables you need to set are the mode OVERNIGHT_LOGGER_MODE
and the filepath OVERNIGHT_LOGGER_FILEPATH. The mode has 4 settings 'console', 'file', 'custom', and 'off'.
logger has an export LoggerModes which is an enum that provides all the modes if you want to
use them in code. If you do not set the mode, logger will default to using CONSOLE. I would recommend
using CONSOLE for local development, FILE for remote development, and CUSTOM or OFF for production. If you
want to change the settings in code, you can do so via the constructor or getters/setters.
Once you've setup logger there are 4 methods to print logs. They are info, which prints green, imp,
which prints magenta, warn, which prints yellow, and err, which prints red. Each method must be
passed the content to print as the first param. There is an optional second param which is a boolean.
If you pass true as the second param, logger will use node's util so that the full object
gets printed. You should NOT normally use this param, but it is especially useful when debugging errors
so that you can print out the full error object and observe the stack trace.
logger will by default prepend every log with a datetime stamp. If you want to turn
this off, set OVERNIGHT_LOGGER_RM_TIMESTAMP to "true" in the environment files or pass false as the
third argument to the constructor. Like all other settings, the argument to the constructor, will override
any environment settings.
Let's look at a code sample which sets the environment variables via a start script:
- In the start script
import * as path from 'path';
import * as fs from 'fs';
import { LoggerModes } from '@overnightjs/logger';
// Set the
const logFilePath = path.join(__dirname, '../sampleProject.log');
process.env.OVERNIGHT_LOGGER_MODE = LoggerModes.FILE; // Can also be CONSOLE, CUSTOM, or OFF
process.env.OVERNIGHT_LOGGER_FILEPATH = logFilePath;
// Remove current log file if it exists
(function removeFile() {
try {
fs.unlinkSync(logFilePath);
} catch (e) { return; }
})();- In the controller file
import { Request, Response } from 'express';
import { Controller, Get } from '@overnightjs/core';
import { Logger, LoggerModes } from '@overnightjs/logger';
@Controller('api/logger')
export class LoggerPracticeController {
private readonly logger: Logger;
constructor() {
this.logger = new Logger();
}
@Get('console/:msg')
private printLogsConsole(req: Request, res: Response): void {
this.logger.info(req.params.msg);
this.logger.imp(req.params.msg);
this.logger.warn(req.params.msg);
this.logger.err(req.params.msg);
this.logger.err(new Error('printing out an error'));
this.logger.err(new Error('printing out an error full'), true); // <-- print the full Error object
res.status(200).json({msg: 'console_mode'});
}
}- The previous code-snippet will show the following content when printed to a file:
IMPORTANT: [2019-04-07T19:17:28.799Z]: OvernightJS with standard express router started on port: 3000
INFO: [2019-04-07T19:18:08.939Z]: hello-logger
IMPORTANT: [2019-04-07T19:18:08.939Z]: hello-logger
WARNING: [2019-04-07T19:18:08.939Z]: hello-logger
ERROR: [2019-04-07T19:18:08.940Z]: hello-logger
ERROR: [2019-04-07T19:18:08.940Z]: Error: printing out an error
ERROR: [2019-04-07T19:18:08.956Z]: Error: printing out an error full
at class_1.LoggerPracticeController.printLogsFile (/home/seanmaxwell/WebstormProjects/Overnight/sample-project/src/controllers/LoggerPracticeController.ts:49:20)
at class_1.descriptor.value [as printLogsFile] (/home/seanmaxwell/WebstormProjects/Overnight/src/core/lib/PropertyDecorators.ts:36:35)
at callBack (/home/seanmaxwell/WebstormProjects/Overnight/src/core/lib/Server.ts:78:50)
at Layer.handle [as handle_request] (/home/seanmaxwell/WebstormProjects/Overnight/src/core/node_modules/express/lib/router/layer.js:95:5)
at next (/home/seanmaxwell/WebstormProjects/Overnight/src/core/node_modules/express/lib/router/route.js:137:13)
at Route.dispatch (/home/seanmaxwell/WebstormProjects/Overnight/src/core/node_modules/express/lib/router/route.js:112:3)
at Layer.handle [as handle_request] (/home/seanmaxwell/WebstormProjects/Overnight/src/core/node_modules/express/lib/router/layer.js:95:5)
at /home/seanmaxwell/WebstormProjects/Overnight/src/core/node_modules/express/lib/router/index.js:281:22
at param (/home/seanmaxwell/WebstormProjects/Overnight/src/core/node_modules/express/lib/router/index.js:354:14)
at param (/home/seanmaxwell/WebstormProjects/Overnight/src/core/node_modules/express/lib/router/index.js:365:14)
at Function.process_params (/home/seanmaxwell/WebstormProjects/Overnight/src/core/node_modules/express/lib/router/index.js:410:3)
at next (/home/seanmaxwell/WebstormProjects/Overnight/src/core/node_modules/express/lib/router/index.js:275:10)
at Function.handle (/home/seanmaxwell/WebstormProjects/Overnight/src/core/node_modules/express/lib/router/index.js:174:3)
at router (/home/seanmaxwell/WebstormProjects/Overnight/src/core/node_modules/express/lib/router/index.js:47:12)
at Layer.handle [as handle_request] (/home/seanmaxwell/WebstormProjects/Overnight/src/core/node_modules/express/lib/router/layer.js:95:5)
at trim_prefix (/home/seanmaxwell/WebstormProjects/Overnight/src/core/node_modules/express/lib/router/index.js:317:13)- And this when printed to the console:

Using a custom logger
For production you'll probably have some third party logging tool like ElasticSearch or Splunk. logger exports
one interface ICustomLogger which has one method sendLog() that needs to implemented. If you created a class
which implements this interface, and add it to logger through a setter or the constructor, and set the mode to CUSTOM,
logger will call whatever logic you created for sendLog().
// CustomLoggerTool.ts
import { ICustomLogger } from '@overnightjs/logger';
export class CustomLoggerTool implements ICustomLogger {
private readonly thirdPartyLoggingApplication: ThirdPartyLoggingApplication;
constructor() {
this.thirdPartyLoggingApplication = new ThirdPartyLoggingApplication();
}
// Needs to be implemented
public sendLog(content: any): void {
this.thirdPartyLoggingApplication.doStuff(content);
}
}// In the controller file
constructor() {
this.customLoggerTool = new CustomLoggerTool();
}
@Get('useCustomLogger/:msg')
private useCustomLogger(req: Request, res: Response): void {
const logger = new Logger(LoggerModes.CUSTOM, '', true, this.customLoggerTool);
logger.rmTimestamp = true;
logger.info(req.params.msg);
}That's All!!
Please star this repo if you found it useful. Happy web-deving :)