DEV Community

Abdelrahman Ashraf
Abdelrahman Ashraf

Posted on

2

Create your own node framework

I've created a simple node framework just to get the idea behind node frameworks like express.

check the code in this repo.

GitHub logo theashraf / bare-node

A simple Node framework

Simple Node framework

what

  • A simple node framework with zero dependency
  • An Express like framework that implements the middleware pattern
  • For demonstration purpose only, not for production (maybe later)

why

To get the idea behind node frameworks specially express (the most popular node framework)

How

  • Middlewares handling is being implemented using the chain of responsibility pattern, check lib/App.js to see the implementaion details
  • Extending the http.ServerResponse object functionality by adding some util method that make it easier to send response, it uses the builder pattern to build the response before sending it to the client, check lib/Response.js
  • Adding BodyParser middleware that parse the request body by listening to the http.IncommingMessage on data event and keep concatinating the incomming buffer chunks until the end event fires, then it will call the next middleware after adding the body object to the req , so later we can access the body in our…

Top comments (0)

👋 Kindness is contagious

Explore this insightful post in the vibrant DEV Community. Developers from all walks of life are invited to contribute and elevate our shared know-how.

A simple "thank you" could lift spirits—leave your kudos in the comments!

On DEV, passing on wisdom paves our way and unites us. Enjoyed this piece? A brief note of thanks to the writer goes a long way.

Okay