Gathering detailed insights and metrics for node-zendesk
Gathering detailed insights and metrics for node-zendesk
Gathering detailed insights and metrics for node-zendesk
Gathering detailed insights and metrics for node-zendesk
A trusted Zendesk API client library for Node.js and the browser, lovingly maintained for over 10 years.
npm install node-zendesk
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
351 Stars
886 Commits
234 Forks
24 Watching
3 Branches
93 Contributors
Updated on 27 Nov 2024
JavaScript (100%)
Cumulative downloads
Total Downloads
Last day
0.5%
11,972
Compared to previous day
Last week
1.8%
63,539
Compared to previous week
Last month
-0%
270,256
Compared to previous month
Last year
21.3%
3,252,216
Compared to previous year
A Zendesk API client library for use with node.js
node-zendesk is a versatile gateway between Node.js and the Zendesk Customer Support Platform. Primarily designed for seamless integration with Node.js applications, it also excels in transforming, accessing, and packaging various Zendesk resources and assets. Beyond its core function, it stands ready to bridge the gap between development and Zendesk's powerful capabilities.
Read the full documentation at blakmatrix.github.io/node-zendesk/
To use the API, just do the standard
1npm install --save node-zendesk
1var zendesk = require('node-zendesk'); 2// or `import {createClient} from 'node-zendesk'` if using typescript 3 4var client = zendesk.createClient({ 5 username: 'username', 6 token: 'token', 7 subdomain: 'subdomain' 8}); 9 10client.users.list().then(users => { 11 console.log('Total Users:', users.length); 12 console.log('User Names:', users.map(user => user.name)); 13}).catch(error => { 14 console.error(`Failed to get list of users: ${error.message}`); 15});
Take a look in the examples
folder for more examples.
If you're new to node-zendesk
, we recommend checking out our Getting Started Guide to help you set up and familiarize yourself with the library.
If you're looking to contribute, please refer to the API Coverage Document, open an issue, or make a PR!
Tests and examples are also welcome.
Zendesk's documentation can be found here.
🎉 Join our community of supporters, backers, and sponsors to help fuel the growth and sustainability of our open-source project. Your contribution, no matter the size, makes a meaningful impact:
By becoming a supporter, backer, or sponsor, you're investing in the innovation and excellence of our project. Together, we can drive meaningful change and empower developers worldwide.
🚀 Join Us | Learn More
MIT.
No vulnerabilities found.
Reason
10 commit(s) and 5 issue activity found in the last 90 days -- score normalized to 10
Reason
no dangerous workflow patterns detected
Reason
security policy file detected
Details
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
0 existing vulnerabilities detected
Reason
dependency not pinned by hash detected -- score normalized to 4
Details
Reason
Found 5/18 approved changesets -- score normalized to 2
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2024-11-25
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More