express-gateway
Version:
A microservices API gateway built on top of ExpressJS
35 lines (31 loc) • 836 B
JavaScript
const eg = require('../../eg');
module.exports = class extends eg.Generator {
constructor (args, opts) {
super(args, opts);
this.configureCommand({
command: 'create [options] <scope..>',
desc: 'Create a scope',
builder: yargs =>
yargs
.usage(`Usage: $0 ${process.argv[2]} create [options] <scope..>`)
.example(`$0 ${process.argv[2]} create scope_name`)
});
}
prompting () {
const argv = this.argv;
const scopes = Array.isArray(argv.scope)
? argv.scope
: [argv.scope];
return this.admin.scopes.create(scopes)
.then(res => {
if (argv.q) {
this.stdout(scopes);
} else {
this.log.ok(`Created ${scopes}`);
}
})
.catch(err => {
this.log.error(err.response.text);
});
};
};