"bin"
in package.json- keeping
index.js
andbin/module
separate. You want both programmatic and cli access - use
yargs
to parse options from the CLI. You can do this manually, but it's painful and error prone.yargs
also helps you build a good UI. - make sure to set the
"main"
field
- es6 friendly – this means no mixins
- immutable friendly
- no promises, because debugging them sucks
- es6 friendly
- code examples
- [try it live](https://babeljs.io/repl/#?experimental=false&evaluate=true&loose=false&spec=false&code=let%20dynamic%20%3D%201%0A%0Aclass%20a%20%7B%0A%20%20constructor()%7B%0A%20%20%20%20this.letter%20%3D%20'a'%0A%20%20%7D%0A%20%20method()%7B%0A%20%20%20%20this.triggered%20%3D%20true%0A%20%20%7D%0A%20%20static%20bumpDynamics%20()%7B%0A%20%20%20%20dynamic%2B%2B%0A%20%20%7D%0A%20%20%5Bdynamic%5D()%7B%0A%20%20%20%20return%20false%0A%20%20%7D%0A%7D%0A%0Aclass%20b%20extends%20a%20%7B%0A%20%20constructor()%7B%0A%20%20%20%20super()%0A%20%20%7D%0A%20%20method()%7B%0A%20%20%20%20super.method()%0A%20%20%20%20this.parentTriggered%20%3D%20true%0A%20%20%7D%0A%7D%0A%0Aclass%20c%20extends%20Array%20%7B%0A%20%20push(...args)%7B%0A%20%20%20%20args.forEach((arg)%20%3D%3E%20%7B%0A%20%20%20%20%20%20if%20(arg%20instanceof%20Error)%7B%0A%20%20%20%20%20%20%20%20throw%20new%20Error('you%20can%5C't%20put%20errors%20here!')%0A%20%20%20%20%20%20%7D%0
A massive list of anything I might have missed
React is really two things: a way to abstract DOM creation and a way of building UI that removes a lot of boilerplate.
React can feel very old school sometimes, in a good way—First get server-side rendering working, much later add client JS as an optimisation via https://twitter.com/markdalgleish/status/580098832043655168
I spent Saturday doing another dive into React 0.12 and ES6. I just wanted to share some of the experience since it's a stack that we're strongly considering adopting (for at least some) of our future work.
Once you get past the weirdness of writing HTML in your JS, it's actually really nice to control your template so directly. Part of it maybe that I'm learning ES6 syntax at the same time, but I'm no longer weirded out by JSX. I'm using the 6to5ify browserify transform, so nearly the full spectrum of ES6 is available, and it feels great. Highlights are destructing and the class syntax (I was surprised!). This is legit code:
// named fuction for free! Don't even need to use the function keyword!
, getInitialState(){
var deadline = moment([2015, 8, 6])
On Thu, Jan 29, 2015 at 9:45 AM, <[email protected]> wrote: | |
Hello– | |
I recently updated to your new snippet, but it violates the Content Security Protocol settings I have in place because it uses `eval`. It there anyway to opt-out of a script that uses `eval`? | |
On 29 January, 2015 at 12:08:25 PM, John Clover ([email protected]) wrote: | |
Hey Joey |
<body><main><h1>hi</h1><img width="500" src="http://cat.jpg.to"><input><p>graf</p></input></img></main></body> |
curl -o ~/Library/LaunchAgents/restart_systemuiserver.plist https://gist.githubusercontent.com/joeybaker/1d32226d928d05a95860/raw/483d41b06427f524b5df0c4d224fb0e2e8ba14e9/restart_systemuiserver.plist \ | |
&& launchctl load ~/Library/LaunchAgents/restart_systemuiserver.plist |
dtrace -n 'proc:::exec-success/basename(execname)=="bash"/{printf("%d executed %s\n", ppid, execname);}' |
- npm all the things! It sucks when packages aren't browserify-able.
- functional/integration tests are incredibly painful to write, run, and maintain.
- even client side unit tests are hard to debug.
- I know dev tools are working hard on being an editor, but I wish there was better integration between dev tools and my editor. Editors are hard, dev tools should let the apps that do it well, manage the problem.
- I wish there was a way to "live reload" js in a hot-swap kinda way.
- JS errors tend to suck. Async stack traces are a huge win, but some errors are always inscrutable:
undefined is not a function