This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const webpack = require('webpack') | |
const path = require('path') | |
const nodeExternals = require('webpack-node-externals') | |
const StartServerPlugin = require('start-server-webpack-plugin') | |
module.exports = { | |
entry: [ | |
'webpack/hot/poll?1000', | |
'./local/server' | |
], | |
watch: true, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/env node | |
// @ts-check | |
import fs from 'fs'; | |
import { exec as execCb } from 'child_process'; | |
import util from 'util'; | |
import moment from 'moment'; | |
import git from 'simple-git/promise'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const listeners = [] | |
const state = {} | |
let noop = x => x | |
function subscribe (fn) { | |
listeners.push(fn) | |
} | |
function unsubscribe (fn) { | |
listeners.splice(listeners.indexOf(fn), 1) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* @flow */ | |
export type ExtractReturn<Fn> = $Call<<T>((...Iterable<any>) => T) => T, Fn>; | |
const mapStateToProps = state => ({ | |
fromAnotherApp: state.app.fromAnotherApp, | |
}); | |
type ReduxProps = ExtractReturn<typeof mapStateToProps>; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function mapAsync<T, U>(array: T[], callbackfn: (value: T, index: number, array: T[]) => Promise<U>): Promise<U[]> { | |
return Promise.all(array.map(callbackfn)); | |
} | |
async function filterAsync<T>(array: T[], callbackfn: (value: T, index: number, array: T[]) => Promise<boolean>): Promise<T[]> { | |
const filterMap = await mapAsync(array, callbackfn); | |
return array.filter((value, index) => filterMap[index]); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const fs = require('fs'); | |
const _ = require('lodash'); | |
const exec = require('child_process').exec; | |
const path = require('path'); | |
// Concatenate root directory path with our backup folder. | |
const backupDirPath = path.join(__dirname, 'database-backup'); | |
const dbOptions = { | |
user: '<databaseUsername>', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// inspired by https://stackoverflow.com/questions/105034/how-to-create-guid-uuid/2117523#2117523 | |
// @TODO - improve this | |
export function uuidv4() { | |
return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) { | |
const r = (Math.random() * 16) | 0, | |
v = c == 'x' ? r : (r & 0x3) | 0x8; | |
return v.toString(16); | |
}); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const path = require('path'); | |
const nodeExternals = require('webpack-node-externals'); | |
const cwd = process.cwd(); | |
export const outputPath = path.join(cwd, '.webpack'); | |
export const outputFilename = 'bundle.js'; | |
export default { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Metro configuration for React Native | |
* https://github.com/facebook/react-native | |
* | |
* @format | |
*/ | |
const path = require('path'); | |
const { FileStore } = require('metro-cache'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import mongoose from 'mongoose'; | |
import { MONGO_URI } from './config'; | |
let cachedMongoConn = null; | |
export default function connectDatabase() { | |
return new Promise((resolve, reject) => { | |
mongoose.Promise = global.Promise; | |
mongoose.connection |