Commit c7e79004 authored by Stephen Sawchuk's avatar Stephen Sawchuk

Merge pull request #1060 from proppy/add-gcp-backend

index: add node.js section and express gcp backend
parents 55ae6d10 e3b1a74b
......@@ -6,6 +6,7 @@ var $ = require('gulp-load-plugins')();
var del = require('del');
var runSequence = require('run-sequence');
var pagespeed = require('psi');
var app = require('./server');
var AUTOPREFIXER_BROWSERS = [
'ie >= 10',
......@@ -103,3 +104,7 @@ gulp.task('pagespeed', pagespeed.bind(null, {
url: 'https://todomvc.com',
strategy: 'mobile'
}));
gulp.task('serve', function (cb) {
app.listen(8080, cb);
});
......@@ -300,6 +300,13 @@
</li>
</ul>
<hr>
<h2>Node.js</h2>
<ul class="applist">
<li>
<a href="http://gcloud-todos.appspot.com" data-source="http://googlecloudplatform.github.io/gcloud-node/" data-content="An Express backend implementation for the AngularJS front end using Google Cloud Client Library for Node.js.">Express + gcloud-node</a>
</li>
</ul>
<hr>
<h2>Compare these to a non-framework implementation</h2>
<ul class="applist">
<li class="routing">
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment