https://github.com/roberto/educodar-web-env
https://github.com/roberto/educodar-web-env
Last synced: 27 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/roberto/educodar-web-env
- Owner: roberto
- Created: 2016-05-29T03:01:32.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-05-29T03:15:01.000Z (about 10 years ago)
- Last Synced: 2025-11-21T18:02:55.625Z (8 months ago)
- Language: JavaScript
- Size: 1000 Bytes
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Writing your app
```js
//your-app.js
function principal(requisicao, resposta) {
resposta.send("Alo, " + requisicao.path + "!");
}
```
## Building
```sh
node build.js your-app.js
```
## Running
```sh
node app.js
```
## Example
```sh
node build.js example/index.js
node app.js
```