1.2.0 • Published 6 years ago

sketch-json v1.2.0

Weekly downloads
10
License
MIT
Repository
github
Last release
6 years ago

sketch-json Build Status

Transform sketch files to json and json to sketch files

Install

$ yarn add sketch-json

Usage

const sketchJson = require('sketch-json')

sketchJson.toJson().then(() => console.log('Done!'))
// => Done!

sketchJson.toSketch().then(() => console.log('Done!'))
// => Done!

How it works

Different from sketch2json, with sketch-json you can transform json to sketch and sketch to json.

sketch-json will generate the json files by zipping the sketch file and decompressing it. By doing that a sketch folder will be generated with all json files

The idea of this libraries is to prepare json files to be pushed/pull to github/gitlab/etc. Version control for designers!

Versioning design

API

sketchJson

.toJson()

Returns a promise Transform Sketch files to json

.toSketch()

Returns a promise Transform json files to Sketch

Related

License

MIT © Bu Kinoshita