An open API service indexing awesome lists of open source software.

https://github.com/roberto/educodar-web-env


https://github.com/roberto/educodar-web-env

Last synced: 27 days ago
JSON representation

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
```