Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chetverikov/catberry-jade
Catberry adapter for Jade template engine
https://github.com/chetverikov/catberry-jade
Last synced: about 2 months ago
JSON representation
Catberry adapter for Jade template engine
- Host: GitHub
- URL: https://github.com/chetverikov/catberry-jade
- Owner: chetverikov
- License: mit
- Created: 2016-03-04T13:10:54.000Z (almost 9 years ago)
- Default Branch: develop
- Last Pushed: 2015-12-12T20:45:10.000Z (about 9 years ago)
- Last Synced: 2023-08-06T01:06:01.246Z (over 1 year ago)
- Language: JavaScript
- Homepage: http://catberry.org
- Size: 15.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Catberry Jade Adapter
[![NPM](https://nodei.co/npm/catberry-jade.png)](https://nodei.co/npm/catberry-jade/)
It is an adapter for [Jade](http://jade-lang.com/) template engine
that makes possible to use it from [Catberry](https://github.com/catberry/catberry) application.## Usage
You can use the adapter like this in ./browser.js or ./server.js.
Actually, [Catberry CLI](https://github.com/catberry/catberry-cli) does it for you.```javascript
var jade = require('catberry-jade'),
cat = catberry.create(config);
jade.register(cat.locator);
```## Contributing
There are a lot of ways to contribute:
* Give it a star
* Join the [Gitter](https://gitter.im/catberry/catberry) room and leave a feedback or help with answering users' questions
* [Submit a bug or a feature request](https://github.com/catberry/catberry-jade/issues)
* [Submit a PR](https://github.com/catberry/catberry-jade/blob/develop/CONTRIBUTING.md)Denis Rechkunov