Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/squallstar/bancha.js
This is a port of Bancha CMS written in Node.js
https://github.com/squallstar/bancha.js
Last synced: about 1 month ago
JSON representation
This is a port of Bancha CMS written in Node.js
- Host: GitHub
- URL: https://github.com/squallstar/bancha.js
- Owner: squallstar
- Created: 2016-01-06T18:10:23.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-01-07T13:07:39.000Z (almost 9 years ago)
- Last Synced: 2024-09-18T00:25:47.786Z (about 2 months ago)
- Language: JavaScript
- Size: 11.7 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Bancha.js
This is a port of [Bancha CMS](https://github.com/squallstar/bancha) for **Node.js**. Currently under heavy development, not for use yet.
# Basic usage
```
npm install bancha --save
``````javascript
var bancha = require('bancha');bancha().start(function () {
console.log('Yipee!');
});
```