isomorphic-tutorial

Tutorial app to demonstrate isomorphic JavaScript concepts.

  • 所有者: spikebrehm/isomorphic-tutorial
  • 平台:
  • 許可證: MIT License
  • 分類:
  • 主題:
  • 喜歡:
    0
      比較:

Github星跟蹤圖

Isomorphic JavaScript Tutorial

This is a small sample app built to demonstrate isomorphic JavaScript concepts.

Overview

Here we've built the minimum-viable example of an isomorphic JavaScript app: an
app that can run on both client and server. Check out my
blog post
on isomorphic JavaScript for some background.

This is a simple Express "blog" app that lists blog posts. Each page is fully
rendered on the server, however upon subsequent navigation, we use the HTML5
History API, aka pushState, to fetch the data for that page from the API and
render the HTML client-side using React.

Under the hood

We combine a few modules together to build an isomorphic JavaScript app. Each
of these modules was built to support both the client and the server, and by
creating some small shims around them, we can abstract out the differences to
create the same API for both client and server.

We use the following modules on both client and server:

On top of a basic Express app.

We use Browserify and Grunt to
package our server-side CommonJS modules in a way that allows us to use them in
the client-side.

Getting it running

Install Node.js >= 0.10.x

If Node.js version >= 0.10.x is not already installed on your system, install it so you can run this app.

Check if it's installed

The command which node will return a path to your installed version of Node.js, if it exists on your system.

$ which node
/usr/local/bin/node

If it is installed, make sure it's >= 0.10.x.

$ node --version
v0.10.33

To install

Mac

Preferably install using Homebrew:

$ brew install node
Else

Otherwise, go to the nodejs.org and download the binary to install on your system.

Install grunt-cli

This app uses Grunt to build its assets. To run Grunt, we need to install the grunt-cli package globally on your system using NPM.

$ npm install -g grunt-cli

Clone this repo onto your machine

$ cd ~/code
$ git clone git@github.com:spikebrehm/isomorphic-tutorial.git
$ cd isomorphic-tutorial

Run npm install to install dependenices

$ npm install
npm http GET https://registry.npmjs.org/superagent
npm http GET https://registry.npmjs.org/handlebars
npm http GET https://registry.npmjs.org/director
...

Run the app!

We'll start up our local Node.js web server using Grunt, so it can automatically do useful things for us when we change files like recompile our assets and restart the server.

$ grunt server

This will start our local web server on port 3030.

You can view it in your web browser at http://localhost:3030/

Adding features

Now that you've got it running, you can start adding some features to get to know the problem space better.

We've got some branches you can check out that show how to add certain features.

Adding the Moment library for date formatting

compare to master

This branch adds the Moment date formatting library for use on the /posts/:id page.

Use Marked library to add Markdown to posts

compare to master

This branch adds the Marked library to allow
formatting of blog post bodies in Markdown, in just a few lines of code.

Create a route for adding posts

compare to master

Create a page with a form at /posts/new, which POSTs to the /api/posts.json endpoint.

License

MIT

主要指標

概覽
名稱與所有者spikebrehm/isomorphic-tutorial
主編程語言JavaScript
編程語言JavaScript (語言數: 3)
平台
許可證MIT License
所有者活动
創建於2013-10-28 03:56:36
推送於2016-03-29 16:58:52
最后一次提交2015-09-23 21:23:42
發布數0
用户参与
星數1.3k
關注者數68
派生數141
提交數67
已啟用問題?
問題數11
打開的問題數9
拉請求數2
打開的拉請求數5
關閉的拉請求數4
项目设置
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?