Skip to content

Instantly share code, notes, and snippets.

View grantgeorge's full-sized avatar
🪐
Working from Saturn

grant grantgeorge

🪐
Working from Saturn
View GitHub Profile
// Future versions of Hyper may add additional config options,
// which will not automatically be merged into this file.
// See https://hyper.is#cfg for all currently supported options.
module.exports = {
config: {
// choose either `'stable'` for receiving highly polished,
// or `'canary'` for less polished but more frequent updates
updateChannel: 'stable',
const Keen = require('keen-js')
const { keenIo: config } = require('config')
function client() {
// Configure instance. Only projectId and writeKey are required to send data.
return new Keen({
projectId: config.projectId,
writeKey: config.writeKey,
})