Blog

Blog Javascript Technical

Scaffold Node.js APIs quickly using Tode-CLI

Tode-CLI is a tool for scaffolding node.js APIs. It provides commands to automate the boring stuff – creating models, services, controllers, registering routes. Thus, speeding up your development time.

Tode-CLI comes with an elegant ORM, objection.js, built on top of the famous query builder, knex.js. This makes interacting with databases a breeze when working with projects created by tode-cli.

Blog Javascript Technical

Securing Node.js Applications with JSON Web Tokens(JWT)

Security is a critical component of most modern web applications. As you progress through your career, you will develop more and more applications which requires some level of security, namely authentication and authorization. One way to handle security in your application in through the use of JSON Web Tokens (JWT) which we’ll discuss in this article