Giter Site home page Giter Site logo

t-express's Introduction

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("@kakasoo/t-express");

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는 어떻게 만들어졌을까? : 미들웨어 편

t-express's People

Contributors

kakasoo avatar

Stargazers

Denver avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.