8000 GitHub - este/este at 6.3.5
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
This repository was archived by the owner on Oct 10, 2023. It is now read-only.

este/este

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Este Build Status Dependency Status devDependency Status

Robust and comfortable dev stack for isomorphic (browser + Node.js) web apps. TodoMVC demo.

Libraries

Languages

Tools

Features

  • React server-side rendering.
  • Isomorphic routing (in progress).
  • MVC meta framework (in progress).

Prerequisites

Java 1.7 and Node.js are required.

npm install -g gulp
npm install -g bower

For Windows users, how to install jsdom: http://alexmeub.com/posts/2014-02-06-windows-npm-install-jsdom.html.

Getting Started

Create Este App

git clone https://github.com/steida/este.git este-app
cd este-app
npm install
bower install

Start Development

  • run gulp
  • point your browser to localhost:8000
  • build something beautiful

Usage

Start development. Build app and run development stack.

gulp

Production mode. Styles are minified and scripts are compiled.

gulp --production or gulp -p

Only build. Useful for continuous integration.

gulp build or gulp build --production

Run development stack. Useful to skip building phase.

gulp run or gulp run --production

Debug makes compiled scripts readable.

gulp build --production=debug

Recommended Editor: Atom.io

Recommended settings.

Error: EMFILE Issue

OSX has default limit for opened files set to 256. Fix it with ulimit -n 10000

Stay Tuned

License

Copyright (c) 2013 Daniel Steigerwald

Licensed under the MIT license.

0