Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@kakasoo/t-express

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@kakasoo/t-express

ES6 style of express.js. Clone coding of server framework.

  • 1.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

T-Express

I've heard that somewhere, the best way to understand frogs is to create frogs, not dissect them.
In this saying, I experience reading and following the code in express.js.
I hope this helps those who have learned the latest JavaScript grammar.

how to use?

I am writing the same grammar code as Express.js.
I will mention only the parts that have been implemented separately.

$ npm install -g TExpress

Available feature

const http = require("http");
const TExpress = require("TExpress");

const app = TExpress();
const PORT = 3000;

app.use((req, res, next) => {
    console.log(123);
    next();
});

app.get("/", (req, res, next) => res.send("send root."));

const server = http.createServer(app);
server.listen(PORT, () => console.log("Server is opened."));
  • Opening a server
  • middleware

To be implemented

  • Code based on ES6 Only ( Not using the Object methods )
  • Reliable middleware capabilities
  • Custom Response methods
    • res.send()
    • res.render()
  • Data delivery through params, body and query
  • Error handling using next()

if you're Korean...

Maybe this is good for you.
Express는 어떻게 만들어졌을까? : Router, Route, Layer
Express는 어떻게 만들어졌을까? : 미들웨어 편

Keywords

FAQs

Package last updated on 02 Jun 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc