An open API service indexing awesome lists of open source software.

https://github.com/kactus-io/kactus-cli

:sparkles: The low level CLI unlocking the Kactus magic
https://github.com/kactus-io/kactus-cli

cli kactus

Last synced: about 1 year ago
JSON representation

:sparkles: The low level CLI unlocking the Kactus magic

Awesome Lists containing this project

README

          

# kactus-cli

## Installation

```
npm install --save kactus-cli
```

## Usage

### Via cli

```
kactus import path/to/folder
```

```
kactus parse path/to/file.sketch
```

### Via Node
```js
const { importFolder, parseFile } = require('kactus-cli')

importFolder('path/to/folder').then(...)

parseFile('path/to/file.sketch').then(...)
```