Skip to content

Instantly share code, notes, and snippets.

@jakwuh
jakwuh / Readme.md
Last active September 27, 2018 16:56
Scalable React applications

Checklist

  • Read about [the story behind react-boilerplate][1]
  • Explore [the structure of react-boilerplate][2]
  • Explore the structure of [scalable-react-boilerplate][3]
  • Read Medium article on [designing large JS applications][4]
  • Read Medium article on [structuring large React applications][5]
  • Read Medium article on [scalable fractal React app structure][13]
  • Read about [feature flags][14]
  • Complete Pluralsight course on [Building Scalable React applications][6]
@verticalgrain
verticalgrain / app.js
Last active April 26, 2022 15:37
React Router V4 Redirect after form submission
import React, { Component } from 'react'
import { Redirect } from 'react-router'
export default class ContactForm extends Component {
constructor () {
super();
this.state = {
fireRedirect: false
}
}
@bahmutov
bahmutov / Docker shell commands.sh
Last active February 9, 2024 07:55
A personal cheat sheet for running local Node project in a Docker container
# See list of docker virtual machines on the local box
$ docker-machine ls
NAME ACTIVE URL STATE URL SWARM DOCKER ERRORS
default * virtualbox Running tcp://192.168.99.100:2376 v1.9.1
# Note the host URL 192.168.99.100 - it will be used later!
# Build an image from current folder under given image name
$ docker build -t gleb/demo-app .
@staltz
staltz / introrx.md
Last active April 25, 2024 04:18
The introduction to Reactive Programming you've been missing