The most complete React/Flux dev stack and starter kit for universal functional web apps. Forget about evil frameworks, learn laser focused libraries and patterns instead.
Breaking: Come to discuss Este with us at reactive2015.com conference. The speaker line up is surprisingly good: Guillermo Rauch, Nikita Prokopov, James Long, Martin Konicek (Facebook React Native developer), Julia Gao and more.
Este universe is organized into several folders, each of them contains its own package.json.
This is umbrella package to help you working with different targets. You should not install any dependencies here. The only dependencies that are included in that package are eslint and its parsers so it's easier to work with Atom/SublimeText.
This package contains several scripts that are here to help you with development, but since they are just wrappers
to the underlaying web/
and native/
tasks, it's not required to use them. See Dev and CI tasks section.
Este common is a package that contains Flux (Redux) implementation, actions, reducers and universal logic that works across all targets. You should not install any React-specific or target-specific dependencies here to make this package fully cross-platform.
This package contains previous Este/web and comes with both client and server.
This package contains previous Este/native and comes with React Native iOS & Android implementations.
Install node.js (v4 is required).
If you are using different node versions on your machine, use nvm
to manage them.
You may also need to upgrade npm
to 3.x
npm install -g npm@3.x
- Universal JavaScript dev stack for browser, server, mobile.
- Functional works: App state snapshots, time travel, hot reload everything.
- React with server side rendering on expressjs backend.
- Redux Flux with atomic immutable.js.
- ECMAScript 2015+ with babeljs.io. JSX and Flowtype syntax supported. Sourcemaps enabled by default.
- Well tuned webpack dev stack.
- Karma as the test runner, mocha as test framework, and Chai as BDD / TDD assertion library.
- Shallow rendering for testing React components without DOM.
- eslint (Sublime Text 3 integration)
- Localization via formatjs.io.
- react-router.
- Simple yet powerfull sync/async validation based on chriso/validator.js
- LESS, SASS, Stylus, or plain CSS with autoprefixer.
- Long Term Caching through file hashes.
git clone https://github.com/este/este.git este-app
cd este-app
npm install
- run
npm run web-start-dev
- point your browser to localhost:8000
- build something beautiful
npm run web-start-dev
run app in development modenpm run web-build
build web packagenpm test
test native, web & common
npm run web-start
just run app, remember to set NODE_ENV=production and others environment variables.
So you decided to give a chance to this web stack, but where is documentation? Code is documentation itself as it illustrates various patterns, but for start you should read something about React.js. Then you should learn what is the Flux application architecture. Now refresh you JavaScript knowledge about "new" JavaScript - learn ES6. This stack uses immutable.js and class-less design for a good reason. Check this nice short video, wouldn't be possible with classic OOP classes everywhere approach. Functional programming is a next (current) big thing, read why. Express.js is used on the Node.js based server. Application is universal, so we can share code between browser, server, mobile, whatever easily. Congrats, you're Este.js expert level 1 now :-)
- wiki: Recommended React Components
- wiki: Recommended Sublime Text 3 Packages
- twitter.com/estejs
- github.com/enaqx/awesome-react
Use this if you are using JEST or another library, which has to be compiled.
- Install Python - Install version 2.7 of Python and add it to your path or/and create a PYTHONPATH environment variable.
- Install Visual Studio (Express Edition is fine) - We will need this for some of modules that are compiled when we are installing Este. Download VS Express, get one of the versions that has C++ - Express 2013 for Windows Desktop for example.
- Set Visual Studio Version Flags - We need to tell node-gyp (something that is used for compiling addons) what version of Visual Studio we want to compile with. You can do this either through an environment variable GYP_MSVS_VERSION. If you are using Express, you have to say GYP_MSVS_VERSION=2013e.
Thanks to Ryanlanciaux
- To check app state, just open browser console.
- With global app state, we don't need IoC container so badly - SOLID: the next step is Functional. Still DI is relevant for some cases and then use Pure DI.
- Learn immutable.js, for example Seq. Handy even for native arrays and objects. For example, get object values:
Seq(RoomType).toSet().toJS()
- Even though we can use
import {canUseDOM} from 'react/lib/ExecutionEnvironment'
to detect browser/server, don't do it since it's runtime value. Use webpack DefinePlugin to setprocess.env.IS_BROWSER
rather, because compilation removes dead code. - How to use Closure Tools, gist
- Recommended editors are sublimetext and atom.io (tips).
You can completely ignore them since they are coming from optional React Native dependencies as noted here. They will be gone with React Native 0.12 being released.
This indicates that you do not have permission to write to the directories that npm uses to store packages and commands. One possible solution is to change the permission to npm's default directory.
- Find the path to npm's directory:
npm config get prefix
For many systems, this will be/usr/local
- Change the owner of npm's directory's to the effective name of the current user
sudo chown -R `whoami` <directory>
In dev mode, webpack loads all the style inline, which makes them hot reloadable. This behaviour disappears in production mode (NODE_ENV=production npm web-start
).
Yes it does. Este is agnostic of what you use in your backend and is completely decoupled from the API. It uses an Express app for server-side rendering, but you can use anything for your API. The only benefit that an Express API has is that it can simply be use()
by the main app, like any other middleware.
Yes. Este makes little assumptions about your stack, and passing every bit of needed info through props. This is not a framework, nothing prevents you from picking the bits you're interested in.
Right now, there are little open sourced apps on the web (if you have any example, feel free to send a PR, or tip us on Gitter). You can have a look at the other repositories of the este organization. You might for instance find some interesting stuff in este-firebase.
Pure means no side effects. Programming without side effects rocks. It allows us to hot reload everything and testing is much easier as well. When component renders only data passed through props, shouldComponentUpdate can be implemented only once per whole app. One can say it's verbose, but it isn't. It's explicit. And remember, we have to pass only data going to be rendered. Actions have access to app state.
- learn-reactjs.com
- javascript-skoleni.cz
- DzejEs.cz - czech articles about Este
- Este.js dev stack works on OSX, Linux, and Windows.
- As a rule of thumb, Este.js supports all evergreen browsers plus last two pieces of IE.
- Support Este.js development via Bitcoin - daniel.steigerwald.cz/#donate-estejs
made by Daniel Steigerwald, twitter.com/steida, @grabbou and the community