hello.js

var please = require('share');
console.log('thank you');

NEW !!!

Wednesday, 6 December, 2017 UTC

Fragments, finally!

React 16.2.0 is fresh off the presses, and one of the major new features it ships with is something called fragments . Simply put, a fragment is a "component" that only returns its children, without any new wrapper DOM node. Here's an example ... more


Tuesday, 5 December, 2017 UTC

Write quality code

Whenever I join a new project or team, there's always a lot of hassle to get used to the code style, formatting and general way of doing things. Even with my best foot put forward, most feedback on my first couple of pull requests typically sound like ... more


Saturday, 2 December, 2017 UTC

Testing your code

Unit testing your code is important to avoid introducing bugs whenever you are writing new code or refactoring legacy. When you do it right, you can feel comfortable that edge cases are covered and mission-critical components work as they were intended. ... more