Skip to content

Latest commit

 

History

History
47 lines (31 loc) · 1.26 KB

README.md

File metadata and controls

47 lines (31 loc) · 1.26 KB

express-layer

daha kolay bir express kullanımı

easier express usage

Kullanım

Bunu projenize dahil etmek için aşağıdakileri yapın.

$ npm i express-layer

ve aşağıdakileri bir js dosyasına yapıştırın.

const { express, app, server, port, catchallroute } = require('express-layer').parametre({ filename: __filename })

server.on('listening', () => {
    app.get('/', (req, res) => { res.send('Express uygulaması isteklerinizi portta bekliyor: ' + port) });
    app.all('*', catchallroute); console.log("ok. express-layer hazır")
});

express-layer için önerileriniz dikkate alınacaktır.

Usage

To include it in your project, do the following.

$ npm i express-layer

and paste the following into a js file.

const { express, app, server, port, catchallroute } = require('express-layer').parametre({ filename: __filename })

server.on('listening', () => {
    app.get('/', (req, res) => { res.send('Express application is waiting for your requests on port: ' + port) });
    app.all('*', catchallroute); console.log("ok. express-layer is ready")
});

Your suggestions for express-layer will be taken into consideration.