Code Reading: Express.js
Following are the list of the points that I find interesting while reading Express code.
Technology, Politics, and Folk Literature
Following are the list of the points that I find interesting while reading Express code.
We are going to build the sample Sails.js or Sails application from the scratch with some unusual steps (for learning). We will end up with a small, functional CRM application.. Without further ado, let’s get started.
I recently read a few books. After completing these books, I felt that the author is stretching the content by repeating the same idea again and again with different words, examples, and angles. What could have been covered in a concise article (or 4-5 pages) was extended into a full-length book. I noticed a similar pattern when reviewing an online course.
Open the http://localhost:3000/about in the web browser. Obviously, you get the No route matches [GET] "/about"
error. Because, this route doesn’t exist.
Go ahead and create a new Rails application using the following command.
The obvious next step is to create the hello, world application in Nest. Run the following command to create the hello, world application using Nest CLI.
Following command will install the Nest CLI. This CLI will help us to scaffold the Nest application and provide the toolchain to do many other important things with Nest application. We’ll cover most of the toolchain functionalities in future.
Rust is the system programming language that run blazingly fast, prevent segfaults, and guarantees thread safety. In other words, Rust is designed for the speed, safety, and concurrency. But, nowadays developers are crazy and use language other than it was originally intended for.
Today, I learn that typedef
with struct
trick give you a way to use structure tag like normal type. But, it is not suggested as mentioned in Linux kernel coding style document except few scenarios.