Socket
Socket
Sign inDemoInstall

candy

Package Overview
Dependencies
396
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    candy

a micro bbs system based on duoshuo.com apis


Version published
Maintainers
1
Created

Readme

Source

logo Candy

a micro bbs system based on duoshuo.com apis

demo

How to install

$ npm install candy

Bite a litter

Start a candy server by defalut

I've prepare a script for you:

$ git clone https://github.com/turingou/candy.git
$ cd candy
$ vi server.js // edit configs
$ node server.js

or by NPM

$ npm install candy
$ cd node_modules/candy
$ vi server.js // edit configs
$ node server.js
Start a candy server by require
var Candy = require('candy');

var myCandy = new Candy.server({
    name: 'My candy BBS', // site name
    url: 'http://abc.com', // site URL
    desc: 'some desc', // site description
    duoshuo: { 
        short_name: 'xxx', // your duoshuo.com [short_name]
        secret: 'xxx' // your duoshuo.com [secret]
    }
});

myCandy.run(9999);

then save it to candy.js.

$ node candy.js // or forever start candy.js
Make your custom candy
    1. find /public folder and change logo.png to yours
    1. visit /admin panel to edit configs (site name , desc , etc.)
    • add boards or edit defalut borard desc.
    • write a thread and try to post it
    • explore and enjoy ~

Pull Request Welcome !

  • fork this repo
  • feel free to add your feature
  • make sure your feature are fully tested!
  • send me a PR, and enjoy !

Candy demos

  • Teslaer: tesla电动车中国爱好者社区 (now building...)

Candy features

Mobile first

Easy to install and config
Comments on cloud

Keywords

FAQs

Last updated on 07 Aug 2013

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc