Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add appengine samples #5

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 31 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,38 @@
## Google Cloud Platform NodeJS Samples
# Google Cloud Platform NodeJS Samples

This repository holds the samples used in the nodejs documentation on [cloud.google.com](https://cloud.google.com).
This repository holds the samples used in the nodejs documentation on [cloud.google.com/nodejs](https://cloud.google.com/nodejs).

[![Build Status](https://travis-ci.org/GoogleCloudPlatform/nodejs-docs-samples.svg)](https://travis-ci.org/GoogleCloudPlatform/nodejs-docs-samples)

See our other [Google Cloud Platform github
repos](https://github.com/GoogleCloudPlatform) for sample applications and
scaffolding for other frameworks and use cases.
## Google App Engine

This is a collection of samples and instructions to run common nodejs frameworks and applications on [Google App Engine](http://cloud.google.com/nodejs).

### Frameworks

- [Express](appengine/express/)
- [Hapi](appengine/hapi/)
- [Loopback](appengine/loopback/)
- [Sails](appengine/sails/)
- [Koa](appengine/koa/)
- [Kraken](appengine/kraken/)
- [Restify](appengine/restify/)
- [Geddy](appengine/geddy/)

### Services

- [Redis](appengine/redis/)

### Tools

- [Grunt](appengine/grunt/)

### More information

- [Getting started with nodejs on Google Cloud](http://cloud.google.com/nodejs/)
- See our other [Google Cloud Platform github repos](https://github.com/GoogleCloudPlatform) for sample applications and scaffolding for other frameworks and use cases.
- [Using the `gcloud` npm module](https://googlecloudplatform.github.io/gcloud-node/#/)
- [Logging to Google Cloud with Winston](https://github.com/GoogleCloudPlatform/winston-gae)

## Contributing changes

Expand Down
29 changes: 29 additions & 0 deletions appengine/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# nodejs -> Google App Engine

This is a collection of samples and instructions to run common nodejs frameworks and applications on [Google App Engine](http://cloud.google.com/nodejs).

## Frameworks

- [Express](express/)
- [Hapi](hapi/)
- [Loopback](/loopback)
- [Sails](sails/)
- [Koa](koa/)
- [Kraken](kraken/)
- [Restify](restify/)
- [Geddy](geddy/)

## Services

- [Redis](redis/)

## Tools

- [Grunt](grunt/)

## More info

- [Getting started with nodejs on Google Cloud](http://cloud.google.com/nodejs/)
- [Using the `gcloud` npm module](https://googlecloudplatform.github.io/gcloud-node/#/)
- [Logging to Google Cloud with Winston](https://github.com/GoogleCloudPlatform/winston-gae)

25 changes: 25 additions & 0 deletions appengine/express/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Express -> Google App Engine

This is a simple guide to running [expressjs](http://expressjs.com/) on Google App Engine.

1. [Create a new Express app](http://expressjs.com/starter/generator.html)

2. Create an `app.yaml` in the root of your application with the following contents:

```yaml
runtime: nodejs
vm: true
env_variables:
PORT: 8080
```

3. Deploy your app. For convenience, you can use an npm script to run the command. Modify your `package.json` to include:

```js
"scripts": {
"start": "node ./bin/www",
"deploy": "gcloud preview app deploy app.yaml --set-default --project [project id]"
}
```

At the terminal you can now run `npm run deploy` to deploy your application.
60 changes: 60 additions & 0 deletions appengine/express/app.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
var express = require('express');
var path = require('path');
var favicon = require('serve-favicon');
var logger = require('morgan');
var cookieParser = require('cookie-parser');
var bodyParser = require('body-parser');

var routes = require('./routes/index');
var users = require('./routes/users');

var app = express();

// view engine setup
app.set('views', path.join(__dirname, 'views'));
app.set('view engine', 'jade');

// uncomment after placing your favicon in /public
//app.use(favicon(__dirname + '/public/favicon.ico'));
app.use(logger('dev'));
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: false }));
app.use(cookieParser());
app.use(express.static(path.join(__dirname, 'public')));

app.use('/', routes);
app.use('/users', users);

// catch 404 and forward to error handler
app.use(function(req, res, next) {
var err = new Error('Not Found');
err.status = 404;
next(err);
});

// error handlers

// development error handler
// will print stacktrace
if (app.get('env') === 'development') {
app.use(function(err, req, res, next) {
res.status(err.status || 500);
res.render('error', {
message: err.message,
error: err
});
});
}

// production error handler
// no stacktraces leaked to user
app.use(function(err, req, res, next) {
res.status(err.status || 500);
res.render('error', {
message: err.message,
error: {}
});
});


module.exports = app;
5 changes: 5 additions & 0 deletions appengine/express/app.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
runtime: nodejs
api_version: 1
vm: true
env_variables:
PORT: 8080
90 changes: 90 additions & 0 deletions appengine/express/bin/www
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
#!/usr/bin/env node

/**
* Module dependencies.
*/

var app = require('../app');
var debug = require('debug')('express:server');
var http = require('http');

/**
* Get port from environment and store in Express.
*/

var port = normalizePort(process.env.PORT || '3000');
app.set('port', port);

/**
* Create HTTP server.
*/

var server = http.createServer(app);

/**
* Listen on provided port, on all network interfaces.
*/

server.listen(port);
server.on('error', onError);
server.on('listening', onListening);

/**
* Normalize a port into a number, string, or false.
*/

function normalizePort(val) {
var port = parseInt(val, 10);

if (isNaN(port)) {
// named pipe
return val;
}

if (port >= 0) {
// port number
return port;
}

return false;
}

/**
* Event listener for HTTP server "error" event.
*/

function onError(error) {
if (error.syscall !== 'listen') {
throw error;
}

var bind = typeof port === 'string'
? 'Pipe ' + port
: 'Port ' + port;

// handle specific listen errors with friendly messages
switch (error.code) {
case 'EACCES':
console.error(bind + ' requires elevated privileges');
process.exit(1);
break;
case 'EADDRINUSE':
console.error(bind + ' is already in use');
process.exit(1);
break;
default:
throw error;
}
}

/**
* Event listener for HTTP server "listening" event.
*/

function onListening() {
var addr = server.address();
var bind = typeof addr === 'string'
? 'pipe ' + addr
: 'port ' + addr.port;
debug('Listening on ' + bind);
}
18 changes: 18 additions & 0 deletions appengine/express/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"name": "express",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"deploy": "gcloud preview app deploy app.yaml --set-default --project express-demo"
},
"dependencies": {
"body-parser": "~1.12.4",
"cookie-parser": "~1.3.5",
"debug": "~2.2.0",
"express": "~4.12.4",
"jade": "~1.9.2",
"morgan": "~1.5.3",
"serve-favicon": "~2.2.1"
}
}
8 changes: 8 additions & 0 deletions appengine/express/public/stylesheets/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
body {
padding: 50px;
font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
}

a {
color: #00B7FF;
}
9 changes: 9 additions & 0 deletions appengine/express/routes/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
var express = require('express');
var router = express.Router();

/* GET home page. */
router.get('/', function(req, res, next) {
res.render('index', { title: 'Express |2|' });
});

module.exports = router;
9 changes: 9 additions & 0 deletions appengine/express/routes/users.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
var express = require('express');
var router = express.Router();

/* GET users listing. */
router.get('/', function(req, res, next) {
res.send('respond with a resource');
});

module.exports = router;
6 changes: 6 additions & 0 deletions appengine/express/views/error.jade
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
extends layout

block content
h1= message
h2= error.status
pre #{error.stack}
5 changes: 5 additions & 0 deletions appengine/express/views/index.jade
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
extends layout

block content
h1= title
p Welcome to #{title}
7 changes: 7 additions & 0 deletions appengine/express/views/layout.jade
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
doctype html
html
head
title= title
link(rel='stylesheet', href='/stylesheets/style.css')
body
block content
10 changes: 10 additions & 0 deletions appengine/geddy/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
*.swp
*.swo
dist
node_modules
*.DS_Store
log/
npm-debug.log
config/secrets.json
public/js/core/models.js
public/js/core/helpers.js
6 changes: 6 additions & 0 deletions appengine/geddy/Jakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@

var t = new jake.TestTask('geddy', function () {
this.testFiles.include('test/*.js');
this.testFiles.include('test/**/*.js');
});

38 changes: 38 additions & 0 deletions appengine/geddy/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Geddy -> Google App Engine

This is a simple guide to running [geddy](http://geddyjs.org/) on Google App Engine.

1. [Create a new geddy app](http://geddyjs.org/tutorial).

2. Create an `app.yaml` in the root of your application with the following contents:

```yaml
runtime: nodejs
vm: true
api_version: 1
env_variables:
PORT: 8080
```

3. Create a `server.js` that contains the following code:

```js
var geddy = require('geddy');

geddy.start({
port: process.env.PORT || '3000'
});
```

4. Run `npm install --save geddy`

5. Deploy! For convenience, you can modify your `package.json` to use an npm script for deployment:

```js
"scripts": {
...
"deploy": "gcloud preview app deploy app.yaml --set-default --project [project id]"
}
```

At the terminal you can now run `npm run deploy` to deploy your application.
1 change: 1 addition & 0 deletions appengine/geddy/_session_store.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"Ln54fnyKo1FzNDpn7DPWhqOclmjjPTbm6K9XyCrSQbny9s1o8EJgLVxCILDEfKK7YUk4mcEcwsQmxyWwJ90ocQGEYB21aYTrl6qlljiPidZxikwV8Kt6RxlDlqcKb2jh":{"accessTime":1439584930407,"flashMessages":{}}}
5 changes: 5 additions & 0 deletions appengine/geddy/app.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
runtime: nodejs
vm: true
api_version: 1
env_variables:
PORT: 8080
Loading