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
- Host: GitHub
- URL: https://github.com/kactus-io/kactus-cli
- Owner: kactus-io
- Created: 2017-06-01T09:11:09.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2022-07-22T07:24:59.000Z (almost 4 years ago)
- Last Synced: 2025-03-26T13:11:21.212Z (over 1 year ago)
- Topics: cli, kactus
- Language: JavaScript
- Homepage:
- Size: 148 KB
- Stars: 14
- Watchers: 4
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
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(...)
```