fastify typeScript generator: a generator for creating fastify server with typescript
open devs
Posted on September 1, 2020
hi everyone, đź‘‹
today we’ll learn to use a great generator tool to create a fastify server in everyone’s favourite typescript language. 👨‍💻
now the first question first, what is fastify?
if you are coming from Node.js background you must have heard of expressjs, it is a web application framework that provides you with a simple API to build websites, web apps and back ends. Now express can be considered as a bit slower. fastify is detailed as a “fast and low overhead web framework, for Node.js”. fastify is a web framework highly focused on speed and low overhead. it is inspired by express and hapi, it is one of the fastest web frameworks in town. using fastify can increase your throughput by up to 100%.
advantages of using fastify?
- 100% asynchronous: all the core is implemented with asynchronous code, in this way not even a millisecond is wasted.
- highly performant: as far as we know, fastify is one of the fastest web frameworks in town, depending on the code complexity we can serve up to 20000 requests per second.
- extendible: fastify is fully extensible via its hooks, plugins, and decorators.
why do we need a generator?
to scaffold applications quicker we need a generator to provide us with a basic useful template on which we can expand based on our requirements.
& so comes fastify-typescript-generator
we created this generator keeping few things in mind:
- using typescript in our templates for better coding standards & attain all the other benefits of typescript.
- providing a template for people familiar with express
- providing a template for people wanting to familiarize themselves with the concept of fastify and it’s the plugin system.
- providing templates with the option to choose between mongoose (a well known MongoDB driver in node.js world supporting schema) & TypeORM which is an ORM that can be used to connect to various SQL as well as MongoDB database (MongoDB connection in BETA) & work with them built specifically keeping typescript in mind.
- some templates have OpenAPI (previously Swagger) implementation
- a cool interactive CLI
so please check it out. it’s already gaining tracking in the community.
npm
https://www.npmjs.com/package/fastify-typescript-generator
how to use it?
or in textual form:
install
npm i -g fastify-typescript-generator
usage
run anyone of following commands:
fastify-gen
# or
fastify-typescript-generator
# or
fastify-ts-gen
who are we?
we are open devs an organization of two motivated developers (@alok722, @mikr13) building open source tools & software to contribute to the community. we are very welcoming towards collaboration & new people joining us in any capacity with a vision to profit community in terms of great tools and education.
you can join us in various places:
npm
github
twitter
website
Posted on September 1, 2020
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.
Related
September 1, 2020