https://github.com/xogroup/toki-hapi-bridge
hapijs bridge for the Toki core runtime
https://github.com/xogroup/toki-hapi-bridge
bridge hapi-plugin hapijs shim
Last synced: 6 months ago
JSON representation
hapijs bridge for the Toki core runtime
- Host: GitHub
- URL: https://github.com/xogroup/toki-hapi-bridge
- Owner: xogroup
- Created: 2017-02-08T19:15:41.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-03-21T14:02:16.000Z (over 8 years ago)
- Last Synced: 2025-03-18T21:08:25.930Z (7 months ago)
- Topics: bridge, hapi-plugin, hapijs, shim
- Language: JavaScript
- Homepage:
- Size: 35.2 KB
- Stars: 6
- Watchers: 6
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Toki-Hapi-Bridge
> Allow the Toki project to be hosted on the hapiJS stackThis is a bridge designed to facilitate using parts of the Toki project on a hapi based server.
Lead Maintainer: [Derrick Hinkle](https://github.com/dhinklexo)
[](https://badge.fury.io/js/%40toki%2Ftoki-logger)
[](https://travis-ci.org/xogroup/toki-hapi-bridge)
[](https://snyk.io/test/github/xogroup/toki-hapi-bridge)
[](https://nodesecurity.io/orgs/xo-group/projects/4f17f141-56c4-4cb9-80a4-665c514d73cc)## Example
```Javascript
const bridge = require('toki-hapi-bridge');
server = new Hapi.Server();server.connection({
host: 'localhost',
port: 5000
});return server.register(bridge);
```More examples can be found in [the examples document](Example.md) and the full api in the [API documentation](API.md).