Skip to content

aydincandan/express-layer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

daha kolay bir express kullanımı

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published