Skip to content

Instantly share code, notes, and snippets.

View christielynam's full-sized avatar

Christie Lynam christielynam

View GitHub Profile
@christielynam
christielynam / .eslintrc
Last active October 8, 2018 22:02
Mod 3 ESList
{
"parser": "babel-eslint",
"extends": [
"eslint:recommended",
"plugin:react/recommended"
],
"plugins": [
"react"
],
"env": {
@laurenfazah
laurenfazah / express_postgress_knex.md
Last active November 26, 2022 13:19
Cheat Sheet: Setting up Express with Postgres via Knex

Express & Postgres via Knex

Note: <example> is meant to denote text replaced by you (including brackets).

Setup

// global dependencies
npm install -g knex
@brittanydionigi
brittanydionigi / .eslintrc
Last active April 18, 2018 13:47
Mod3 ESLint
{
"parser": "babel-eslint",
"extends": [
"eslint:recommended",
"plugin:react/recommended"
],
"plugins": [
"react"
],
"env": {