https://github.com/lsongdev/dingtalk-js
:bell: Simple DingTalk API for Node.js
https://github.com/lsongdev/dingtalk-js
dingtalk dingtalk-sdk
Last synced: 7 months ago
JSON representation
:bell: Simple DingTalk API for Node.js
- Host: GitHub
- URL: https://github.com/lsongdev/dingtalk-js
- Owner: lsongdev
- Created: 2019-07-11T04:16:17.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-11-06T09:59:20.000Z (about 5 years ago)
- Last Synced: 2025-02-13T22:23:39.174Z (11 months ago)
- Topics: dingtalk, dingtalk-sdk
- Language: JavaScript
- Homepage: https://npmjs.org/dingtalk-bot-api
- Size: 5.86 KB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## dingtalk
> Simple DingTalk API for Node.js
### installation
```bash
~$ npm i dingtalk-bot-api
```
### example
```js
const DingTalk = require('dingtalk-bot-api');
const dingtalk = new DingTalk({
access_token: '-- Your Access Token Here --'
});
dingtalk
.create()
.text('dingtalk is great!')
.send()
//-> "ok"
```
### licesne
This project is under MIT license.