https://github.com/fpgawars/icestudio-cli
Small utilities for working with .ice icestudio files in the command line
https://github.com/fpgawars/icestudio-cli
Last synced: 2 months ago
JSON representation
Small utilities for working with .ice icestudio files in the command line
- Host: GitHub
- URL: https://github.com/fpgawars/icestudio-cli
- Owner: FPGAwars
- License: lgpl-2.1
- Created: 2021-03-13T09:51:32.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2023-04-24T08:53:34.000Z (about 2 years ago)
- Last Synced: 2025-03-22T16:52:52.650Z (3 months ago)
- Language: Python
- Size: 564 KB
- Stars: 5
- Watchers: 5
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Icestudio-cli
Small utilities for working with .ice icestudio files in the command line## Test files
The Icestudio files used for testing are located in the **Test-files** folder
* **test-01-info.ice**: It only contains a basic info block
## External node.js modules
* [colors](https://nodejs.org/en/knowledge/command-line/how-to-get-colors-on-the-command-line/): Print colors on the command line
## Quick start
* Install all the packages: `npm install`
* Run the test.js example: `node test.js````
----------------------------------------
File: Test-files/test-01-info.ice
----------------------------------------
Icestudio ROOT:
Version: 1.2
Board: alhambra-ii
Blocks: 1
Wires: 0Raw content:
{ version: '1.2',
package:
{ name: '', version: '', description: '', author: '', image: '' },
design:
{ board: 'alhambra-ii', graph: { blocks: [Array], wires: [] } },
dependencies: {} }
```