https://github.com/anonrig/zeplin-client
Zeplin NodeJS client with TypeScript bindings
https://github.com/anonrig/zeplin-client
Last synced: 9 months ago
JSON representation
Zeplin NodeJS client with TypeScript bindings
- Host: GitHub
- URL: https://github.com/anonrig/zeplin-client
- Owner: anonrig
- License: mit
- Created: 2020-03-02T22:52:25.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2025-07-24T21:14:39.000Z (12 months ago)
- Last Synced: 2025-09-08T01:24:48.610Z (10 months ago)
- Language: TypeScript
- Homepage:
- Size: 2.28 MB
- Stars: 15
- Watchers: 2
- Forks: 0
- Open Issues: 29
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
**Due to the lack of support and Zeplin's internal policies, we stopped working on Zeplin iOS application. More information can be found through https://twitter.com/yagiznizipli/status/1238143337661640706**
So, apparently instead of replying to our emails Zeplin decided with promoting non-open sourced version of zeplin client (https://blog.zeplin.io/making-zeplin-mobile-with-zeplin-api-2db73dc2a0dd…) What a good time to be an open source contributor!
-----
# Zeplin OAuth NodeJs API Client
[](https://greenkeeper.io/)
[](https://travis-ci.org/relevantfruit/zeplin-client)
[](https://codecov.io/gh/relevantfruit/zeplin-client)
[](http://commitizen.github.io/cz-cli/)
[](https://prettier.io/)
[](https://semantic-release.gitbook.io/semantic-release/)
[](https://github.com/typescript-eslint/typescript-eslint)
[](https://relevantfruit.github.io/zeplin-client/)
[](https://www.npmjs.com/package/zeplin-client)
## Prerequisites
You will require the following to make use of this boilerplate.
1. [Github](https://github.com/) account.
1. [Node.js](https://nodejs.org/en/) installed on your local machine and optionally yarn.
1. [Git](https://git-scm.com/) installed on your local machine.
1. An IDE with javascript/typescript support.
## Recommended IDE
You should be using [Visual Studio Code](https://code.visualstudio.com/) because its simple, fast, extensible and beloved by many developers.
Make sure to install all the [recommended extensions](https://code.visualstudio.com/docs/editor/extension-gallery#_recommended-extensions) that come with the repository for the best possible coding experience.
## Quick Start
Install package using `npm i --save zeplin-client`
```typescript
import Client, { Types } from 'zeplin-client'
const client = new Client('app-id', 'app-secret', 'https://api.relevantfruit.com')
const pagination: Types.Pagination = { limit: 100, offset: 0 }
client
.getScreens('my-access-token', pagination)
.then(console.log)
.catch(console.error)
```