Skip to content

Instantly share code, notes, and snippets.

View mfdorst's full-sized avatar

Michael Dorst mfdorst

  • Sacramento, California, United States
View GitHub Profile
@mfdorst
mfdorst / nodejs_notes.md
Last active July 25, 2019 01:29
Node.js Notes

React

Installing create-react-app

$ npm i -g create-react-app

Creating a new react app

@mfdorst
mfdorst / spec_helper.rb
Last active December 30, 2015 07:49
A snippet to put in your 'spec_helper's to enable color rspec tests.
require 'rspec'
RSpec.configure do |config|
config.tty = true
config.color_enabled = true
end