const React = require('react'); const CompLibrary = require('../../core/CompLibrary.js'); const translate = require("../../server/translate.js").translate; const translation = require('../../server/translation.js'); const Container = CompLibrary.Container; const GridBlock = CompLibrary.GridBlock; const siteConfig = require(process.cwd() + '/siteConfig.js'); class TweetsSection extends React.Component { render() { return(
{this.renderTweetUpRight()}
{this.renderTweetUpLeft()}
{this.renderTweetDownRight()}
{this.renderTweetDownLeft()}
); } renderTweetUpRight() { return (

In a world where @npmjs and other core infrastructure fully embraced the "move fast and break things" mindset, it's great to see other people care deeply about stability. https://t.co/uVk7xFeiwU "just works" and has saved us countless headaches. Thanks @verdaccio_npm !

— Sheet JS (@SheetJS) 1 de junio de 2018
); } renderTweetUpLeft() { return (

Woke up to @timer150 fixing end-to-end test flakiness in Create React App πŸ‘ Background: we have a Lerna monorepo and used very complex hacks for integration testing of generated projects. Solution: run a local npm registry to simulate a publish 😁 https://t.co/ggNfS4PpFv

— Dan Abramov (@dan_abramov) 11 de enero de 2018
); } renderTweetDownRight() { return (

Verdaccio is my personal hero. A lightweight npm registry & cache. Just two commands to install + use it. #incredibile https://t.co/X0uNgS6UMz

— Manfred Steyer (@ManfredSteyer) 31 de mayo de 2018
) } renderTweetDownLeft() { return (

@verdaccio_npm is a pretty good open-source tool and seems to be growing. We're currently using them at NodeSource for some internal caching and modules, and are happy so far. Easy to setup for both business and use.

πŸ”— https://t.co/ow5JRgZYrU

— Tierney Cyren (@bitandbang) 29 de mayo de 2018
); } } class Button extends React.Component { render() { return (
{this.props.children}
); } } Button.defaultProps = { target: '_self', }; class HeaderButtons extends React.Component { buildUrl(relativePath) { return `${siteConfig.baseUrl}docs/${this.props.language}${relativePath}`; } render() { return (
) } } class HomeSplash extends React.Component { render() { return (

{siteConfig.title} { translation[this.props.language]['localized-strings'].tagline }