cnodejs-api
client for https://cnodejs.org/api
- [x] create topic
- [x] 支持cli把markdown发布到cnode
- [ ] update topic
Install
$ npm i -g cnodejs
需要在环境变量配置用户的cnode token
Usages
cli
快速发布README.md到cnode,只需要2步
1) 需要在环境变量配置用户的cnode token
export CNODE_TOKEN=xxx
2) 执行cnode命令,默认文件是README.md
$ cnode -h
Usage: cnode [options]
Options:
--file, -f choose a file, default README.md
-h, --help Show help [boolean]
api
$ npm i -S cnodejs
then
var api = require('cnodejs')
if (!process.env.CNODE_TOKEN) {
api = require('cnodejs')('3d5ba965-747e-45ab-b879')
}
create topic
api.create('cnodejs api测试信息请忽略', '我是用来测试的,请忽略')
.then(function(response){
console.log(response)
}).catch(function (err) {
console.log(err)
})
Debug
$ DEBUG=cnode cnode