Skip to content

Instantly share code, notes, and snippets.

@pateketrueke
Last active November 9, 2017 10:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pateketrueke/66fef140318a4dbc79bc7a9fe8038c44 to your computer and use it in GitHub Desktop.
Save pateketrueke/66fef140318a4dbc79bc7a9fe8038c44 to your computer and use it in GitHub Desktop.
Grown v1 DSL
'use strict';
const IS_LIVE = process.argv.slice(2).indexOf('--live') > -1;
require('debug').enable('*');
const Grown = require('./_plugs/grown');
Grown.use(require('./_plugs/router'));
Grown.use(require('./_plugs/test'));
Grown.use(require('./_plugs/conn'));
const server = new Grown({
env: process.env.NODE_ENV || 'development',
cwd: process.cwd(),
});
Grown.module('Example', {
props: {
TRUTH: 42,
},
methods: {
call(ctx) {
ctx.res.write('0\n');
},
},
});
server.plug([
IS_LIVE
? null
: [Grown.Test.Request, Grown.Test.Mock.Res],
// Grown.Conn,
// Grown.Router,
Grown.Router.HTTP,
{
before_send(ctx) {
ctx.res.write('\nBEFORE_SEND');
},
},
]);
server.mount((ctx, options) =>
ctx.next(() => {
ctx.res.write(`ENV: ${options('env')}`);
}));
server.get('/x', ctx => {
if (ctx.script_name) {
ctx.res.write(`${ctx.script_name}\n`);
} else {
ctx.res.write('N/A\n');
}
});
server.get('/mix', [
Grown.Example({
props: {
TRUTH: 31,
},
methods: {
call(ctx, options) {
this.super.call(ctx, options);
ctx.res.write(`${this.TRUTH} / ${this.super.TRUTH}\n`);
},
},
}),
ctx => ctx.res.write('1\n'),
ctx => ctx.res.write('2\n'),
]);
if (IS_LIVE) {
server.listen(8080, ctx => {
console.log('START', ctx.location.href);
});
} else {
server.request('/mix', (e, ctx) => {
console.log(ctx.res.body);
});
Grown.Test.Request.request.call(server, '/x', (e, ctx) => {
console.log(ctx.res.body);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment