Last active
March 17, 2017 22:47
-
-
Save branflake2267/a023904bdc0521523775828a382a91d6 to your computer and use it in GitHub Desktop.
App Engine Flex node.js; Add a public directory for static files.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Copyright 2016, Google, Inc. | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software | |
* distributed under the License is distributed on an "AS IS" BASIS, | |
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
* See the License for the specific language governing permissions and | |
* limitations under the License. | |
*/ | |
// [START app] | |
'use strict'; | |
// ~~~ 1. add path | |
const path = require('path'); // <<<<----- | |
const express = require('express'); | |
const app = express(); | |
// ~~~ 2. Add public dir | |
var dir = path.join(__dirname, 'public'); // <<<<----- | |
app.use(express.static(dir)); // <<<<----- | |
app.get('/', (req, res) => { | |
res.status(200).send('Hello, world2!'); | |
}); | |
// Start the server | |
const PORT = process.env.PORT || 8080; | |
app.listen(PORT, () => { | |
console.log(`App listening on port ${PORT}`); | |
console.log('Press Ctrl+C to quit.'); | |
}); | |
// [END app] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment