Skip to content

Instantly share code, notes, and snippets.

@Jtmaca9
Jtmaca9 / From-Scratch-RCA.md
Created June 1, 2018 02:11 — forked from miketamis/From-Scratch-RCA.md
What I would want from a React Create App

React Create App is great, and one of the biggest things making React more accessable. However I use more toolsets and different ones.

Requirements

Development Tools:

  • Automatic Page Reload
  • Hot Reloading
  • Intergration into text editor (at least VSCode, with its debug tools)
  • Static analysis for
  • general javascript tidyness / common problem (indentation, not assigning the right varibles etc)
@Jtmaca9
Jtmaca9 / nodejs-tcp-example.js
Created March 13, 2017 02:54 — forked from tedmiston/nodejs-tcp-example.js
Node.js tcp client and server example
/*
In the node.js intro tutorial (http://nodejs.org/), they show a basic tcp
server, but for some reason omit a client connecting to it. I added an
example at the bottom.
Save the following server in example.js:
*/
var net = require('net');