https://github.com/vertrical/tino
Tiny and functional HTTP server for Deno with local JSON REST API for rapid prototyping.
https://github.com/vertrical/tino
async chain compose deno functional http-server javascript json jsondb middlewares
Last synced: about 1 year ago
JSON representation
Tiny and functional HTTP server for Deno with local JSON REST API for rapid prototyping.
- Host: GitHub
- URL: https://github.com/vertrical/tino
- Owner: Vertrical
- License: mit
- Created: 2020-05-29T10:46:19.000Z (about 6 years ago)
- Default Branch: develop
- Last Pushed: 2022-01-20T10:40:46.000Z (over 4 years ago)
- Last Synced: 2025-03-17T13:40:59.867Z (over 1 year ago)
- Topics: async, chain, compose, deno, functional, http-server, javascript, json, jsondb, middlewares
- Language: JavaScript
- Homepage:
- Size: 228 KB
- Stars: 11
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
### UPDATE: We stopped maintaining this project. If you have any requests about this project please create an Issue.

# Tino
Tiny HTTP server for Deno, functionally composed.
## Install and Use
1. Install Deno: https://deno.land/#installation
2. Try it out: `$ deno run --allow-net --allow-read --allow-write https://deno.land/x/tino@v1.0.5/tino.js`
Internally Tino uses `jsondb responder` which opens `/api` path for playing around. It uses `db.json` file by default as a database.
1. To see it already, copy it from tests: `$ cp ./tests/jsondb.test.json ./db.json`
2. Open http://localhost:8000/api
## Minimal configuration (custom endpoints)
```js
// app.js
import tino from "https://deno.land/x/tino@v1.0.5/tino.js";
const app = tino.create();
const controller = () => ({ resp: "pong", status: 200 }); // must return { resp, status?, type? }
app.get(() => ({ path: "/ping", use: controller }));
tino.listen({ app, port: 8000 });
console.log("Server running at 8000");
```
1. Now run the server: `$ deno run --allow-net app.js`
2. Send a request: `$ http :8000/ping` (HTTPie, curl, Postman, etc.)
3. Receive `"pong"` as `text/plain` content type
### Simple way of setting responses and statuses:
Since all functions are composed and pure, it's easy to unit test them:
```js
app.get(() => ({
path: "/notes/:id",
use: ({ params, notes = { "123": { text: "Take a walk" } } }) =>
(notes[params.id] ? { resp: notes[params.id] } : { status: 404, resp: "Sorry, kinda nothing" })
}));
```
Resulting in:
```zsh
$ http :8000/notes/123
----------------------
HTTP/1.1 200 OK
content-length: 22
content-type: application/json
{
"text": "Take a walk"
}
```
```zsh
$ http :8000/notes/123456789
----------------------------
HTTP/1.1 404 Not Found
content-length: 20
content-type: text/plain
Sorry, kinda nothing
```
### Further configurations
```js
app.get(() => ({ path: "/ping", resp: "pong" })); // Shorter: Use `resp` directly with status 200
app.get(() => ({ path: "/ping-async", use: async () => ({ resp: "pong", status: 201 }) })); // `use` controller can also be async
app.not_found(() => ({ resp: "Oops" }));
```
Tino application `app` supports following HTTP methods: GET, POST, PUT, PATCH, DELETE. Method names are lowercased. Also there is `not_found` for status 404, so you can define custom response.
`resp` can be anything, but if it's a function it will return it's result of execution, and it will be called no matter if it's async or not. If it's an object (or returned as an object), content type will be `application/json`.
The only requirement for controller `use` is that it must return `{ resp, status?, type? }` object. It can also be defined as async function.
### Difference between Tino and "usual approach"
What I've seen and used is that usually there are one or more global variables or internally modified variables through the request cycle. This results in following pseudo code:
```js
myController = ctx => {
ctx.type = "text/html";
ctx.status = 200;
ctx.body = "
Greetings!
";
}
```
While in Tino idea is that all functions are composed and there is no global variable but what you want in next step is what you pass further, through the chain. That might look like:
```js
myController = () => {
const type = "text/html";
const status = 200;
const body = "
Greetings!
";
return { type, status, body };
}
```
If you read further on about middlewares for example you'll see how this plays well with composition. These functions must be pure, easy to unit test and able to be recursive.
## Defining path parameters
Parameters are defined as `:param` in your path definition. Optionals are defined as `:param?`. For example:
```js
app.get(() => ({ path: "/user/:id", use: ({ params }) => ({ resp: params.id }));
```
## `props` definition
Controller `use` receives following parameters:
1. `body` - body payload for POST, PUT or PATCH methods
2. `params` - parameters from path definition, e.g. `/path/:id`
3. `query` - query object from string like `?p=1&q=2`
4. `custom params` - anything else provided to method definition, except `path`, `resp` or `use`
5. `matchedPath` - information about path regex
6. `pathPattern` - information about path definition
7. `req` - in form of `{ method, url }`
7. Any other parameters coming from middlewares
Basically you can test this with following have-it-all definition: (read more about middlewares below)
```js
// $ http POST :8000/post/123?q=1 foo=bar
const composed = withMiddlewares(
() => ({ isAdmin: true }),
);
app.post(() => ({
path: "/post/:id", // or optional with :id?
use: composed((props) => ({ resp: { ...props } })),
something: "else",
}));
```
### Response
Response received should be:
```json
{
"body": {
"foo": "bar"
},
"isAdmin": true,
"matchedPath": {
"index": 0,
"params": {
"id": "123"
},
"path": "/post/123"
},
"params": {
"id": "123"
},
"pathPattern": "/post/:id",
"query": {
"q": "1"
},
"req": {
"method": "POST",
"url": "/post2/123?q=1"
},
"something": "else"
}
```
### Return type (Content type)
When you define `resp`, you can define content type such as `text/html`:
```js
const use = () => ({ resp: "
Works!
", status: 200, type: 'text/html' });
app.get(() => ({ path: "/ping", use }));
```
## Middlewares
Middlewares offer you way to extend response by injecting additional information to your controllers. In Tino it is done by async functional composition so your middlewares can be both sync and async. It is offered by `withMiddlewares` helper from `tino.js`.
### Examples:
1. Check if user is admin and inject database into your controller:
```js
import { withMiddlewares } from "tino.js";
// Initial props are provided: https://github.com/Vertrical/tino#props-definition
const auth = (props) => ({ isUser: true });
const isAdmin = (props) => ({ isAdmin: false, ...props });
const withDB = (props) => ({ coll: {}, ...props });
const composed = withMiddlewares(auth, isAdmin, withDB);
// Define your endpoint:
const use = composed(({ isUser, isAdmin, coll }) => ({ resp: "Hello", status: /*...*/ }));
app.get(() => ({ path: "/ping", use }));
```
Any prop that is returned will be passed over to next function in chain, until the end - end result is what is passed to your controller.
2. Exit early depending on if a precondition hasn't been met (protect the router):
It's similar to previous case only that if any of the middlewares throws an exception it will be used as end result of your controller, i.e. replace it.
```js
import { withMiddlewares } from "tino.js";
const auth = (props) => { throw { resp: "Boom", status: 401 }; };
const isAdmin = (props) => ({ isAdmin: false, ...props });
const withDB = (props) => ({ coll: {}, ...props });
const composed = withMiddlewares(auth, isAdmin, withDB);
// Define your endpoint:
const use = composed(({ isUser, isAdmin, coll }) => ({ resp: "Hello" }));
app.get(() => ({ path: "/ping", use }));
// HTTP Response headers and content: (if you call "localhost:{port}/ping)
`
HTTP/1.1 401 Unauthorized
content-length: 4
content-type: text/plain
Boom
`
```
Note: Whatever you want to be returned from middlewares to your controller, you should propagate these props through the chain. (As seen above with `...props` for example)
## Responders
In Tino responders are your implementations of custom APIs which don't rely on paths pattern matching.
You define a responder by adding `root: true` to your endpoint definition.
For example:
```js
import myAwesomeAPI, { v2 } from "somewhere";
app.any(() => ({ path: "/awesome-api", use: myAwesomeAPI, root: true })); // <-- Notice the `root: true` part
app.any(() => ({ path: "/awesome-api/v2", use: v2, root: true }));
```
Setting the `root` part is because we will match here only by `startsWith` against your request, disregarding any parameter matching.
Example of a responder is `jsondb` which comes integrated with Tino and is located in [jsondb.js](https://github.com/Vertrical/tino/blob/develop/jsondb.js) file.
### Using `jsondb` responder
This responder is just a small package included by default in Tino which handles CRUD operations on `db.json` file.
Each response is wrapped with `response` parent, like:
```js
// GET /api/users/1234
{
"response": {
"id": "1234",
"name": "Smith"
}
}
```
### How is `jsondb` responder defined?
`jsondb` responder is already integrated with Tino so you don't need to do anything. But, if you want to define it nevertheless, you can do it like below:
```js
import tino, { jsondb } from "tino.js";
const app = tino.create();
app.any(() => ({ path: "/api", use: jsondb(), root: true })); // notice the ()
// If you want some other namespace
app.any(() => ({ path: "/awesome-api", use: jsondb(), root: true }));
tino.listen({ app });
```
(Please note that `jsondb` must be called. This is because it is a higher order function.)
`any` is needed because we want ANY HTTP METHOD to be used with this.
### JSON REST API
Test JSON file is included in [tests/jsondb.test.json](https://github.com/Vertrical/tino/blob/develop/tests/jsondb.test.json). You need to create your `./db.json` file to operate agains it.
Having the content same as in jsondb.test.json file, we would have following requests returning respective responses:
```sh
# Get list of items:
$ http :8000/api/laptops
# Get item by id: (jsondb treats any "id" found in an entity as ID)
$ http :8000/api/laptops/123
# Create new item:
$ http POST :8000/api/laptops id=789 brand=apple
# Replace an item:
$ http PUT :8000/api/laptops/789 brand=asus
# Update an item:
$ http PATCH :8000/api/laptops/789 brand=asus
# DELETE an item:
$ http DELETE :8000/api/laptops/789
```
You can see many examples in [tests/requests.http](https://github.com/Vertrical/tino/blob/develop/tests/requests.http) file.
### Customize API
If you want to change endpoint from `/api` to something else, just replace it:
```js
app.any(() => ({ path: "/myapi", use: jsondb(), root: true }));
// you can optionally "close" /api
app.any(() => ({ path: "/api", status: 404 }));
```
Remember that you need to create file `db.json` yourself. If not, the response will be empty and status 404.
## CLI and options for Tino and jsondb
### Dry run for jsondb
If you want only to check how a request would modify db.json database without touching it, you can do a dry run.
```sh
# --allow-write is not necessary
deno run --allow-net --allow-read tino.js --dry=true
```
In your code you can achieve same by passing `true` to `jsondb` responder:
```js
app.get(() => ({ path: "/ping", use: jsondb(true), root: true }));
```
### Custom port
You can run Tino on custom port:
```sh
deno run --allow-net --allow-read --allow-write tino.js --port=7000
```
Similarly, in your code you can pass it to `listen` method:
```js
// if you omit port, it will be 8000
tino.listen({ app, port: 7777 });
```
## Run tests
Run: `$ deno test`
All tests are included in `./tests` directory.
## Examples
You can find maintained list of exampes in [examples.js](https://github.com/Vertrical/tino/blob/develop/examples.js) file.
## To-do list
- [ ] Write TypeScript support (depends on https://github.com/microsoft/TypeScript/issues/38510)
- [ ] The "after hooks", similar to middlewares but happening AFTER your controller
- [ ] Cookies support
- [ ] GraphQL responder for local prototyping (like jsondb for REST)
## Stay in touch
You can follow us on Twitter https://twitter.com/tino_server or open issues here.