We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Alguém poderia disponibilizar a conf do express para subir a app? Rodrigo usou a porta 8000 na aula
The text was updated successfully, but these errors were encountered:
var express = require('express'); var app = express();
//--public // --css // --js // --view app.use(express.static('public'));
app.get('/', function(req, res) { res.sendFile(__dirname + '/index.html'); });
app.listen(8000, function () { console.log('Example app listening on port 8000!'); });
Sorry, something went wrong.
Ok
No branches or pull requests
Alguém poderia disponibilizar a conf do express para subir a app? Rodrigo usou a porta 8000 na aula
The text was updated successfully, but these errors were encountered: