0.0.20 • Published 7 years ago
@guivic/fabric-node v0.0.20
fabric-node
node.js helpers to create quickly micro services and API
Microservice
(async function () {
try {
const PORT = process.env.PORT || 3000;
const microService = new MicroService({
port: PORT, // default: 3000
initMethod: () => { // default: () => {}
console.log('code runned before starting the microservice');
},
bodyParserJSON: true, // body parser configured to accept json (default: false)
fileUpload: true, // to accept file upload (default: false)
sentryDSN: 'SENTRY_KEY', // to configure sentry with the microservice (default: null)
});
await microService.start();
console(`microservice listening on port ${PORT}`);
} catch (error) {
console.log(error.message);
}
}());
0.0.20
7 years ago
0.0.19
7 years ago
0.0.18
7 years ago
0.0.17
7 years ago
0.0.16
7 years ago
0.0.15
7 years ago
0.0.14
7 years ago
0.0.13
7 years ago
0.0.12
7 years ago
0.0.11
7 years ago
0.0.10
7 years ago
0.0.9
7 years ago
0.0.8
7 years ago
0.0.7
7 years ago
0.0.6
7 years ago
0.0.5
7 years ago
0.0.4
7 years ago
0.0.3
7 years ago
0.0.2
7 years ago
0.0.1
7 years ago