Rafael Turk
Rafael Turk
This is really a nice repo. At least from my perspective it provides core features. Any particular reason for not merging this with the core KUE code and join the...
Currently the list of unused componentes is rendered as part of the main table, as if was some sort of a row. This component is named `pvtUnused` Overall this is...
Correct usage is ? @route("/") @cache.cached(timeout=50) def index(): return render_template('index.html') or @cache.cached(timeout=50) @route("/") def index(): return render_template('index.html')
Hi It's possible to log (push) to an API instead of write to disk? I would like to log errors (400's and 500's) to AWS SNS, this is a simple...
I'm using Koa. So most of my endpoints are as follows: ``` .get('/product/:id', async ctx => { const product = await Product.findById(ctx.params.id).populate('comments').exec(); if (product) ctx.body = product; }) ``` where...
Hi All, Has anyone successfully performed queries using full text search (MongoDB $text)? Looks like this is currently not supported. Something like: ``` query{ viewer{ products(first:5,text:"chocolate cream"){ edges{ node{ name...
Is this launch statement correct? `"start": "node ./node_modules/.bin/pm2 start app.js --name pm2-ebs-demo"` Located here: https://github.com/keymetrics/pm2-ebs-demo/blob/master/package.json#L10
This code is amazing- can you please clarify what is the license? Please confirm if this is MIT code