Collection of Zendesk Plugins used in JustServe.
Install Node.js and npm using winget:
winget install OpenJS.NodeJSVerify the installation:
node --version; npm --versionClone the repository and install dependencies:
git clone git@github.com/JustServe-Resources/crispy-fishstick.git
cd crispy-fishstick
npm installThis will install:
- @zendesk/zcli – Zendesk CLI for plugin validation and deployment
- ESLint – JavaScript linter for code quality
- Prettier – Code formatter
View available npm scripts:
npm runCheck for linting issues:
npm run lintAuto-fix linting issues:
npm run lint:fixFormat code with Prettier:
npm run formatValidate a plugin using ZCLI:
zcli apps:validate <plugin-directory>Example:
zcli apps:validate ./problem-ticket-searchRefer to each plugin's README for specific build and deployment instructions.