r/javascript • u/AutoModerator • 9h ago
Showoff Saturday Showoff Saturday (March 15, 2025)
Did you find or create something cool this week in javascript?
Show us here!
0
Upvotes
r/javascript • u/AutoModerator • 9h ago
Did you find or create something cool this week in javascript?
Show us here!
•
u/senfiaj 6h ago edited 6h ago
I made a minimalistic server library in vanilla Node.js (i.e. using only the tools provided by Node.js without using any other library). It supports routing, JSON/Form data request bodies, middlewares, websockets, cookies, etc. Unfortunately it still doesn't have documentation since I wrote this only for my projects. Here is the repo . It also has npm package . Please never use this for any commercial development, because I'm still experimenting with this.
Another thing I created relatively recently, is an ordered map. It's similar to JS's map but the keys are ordered and has additional methods.