https://github.com/kodular/aia-kit
Read, Parse, Edit, Write, Analyze AIA/AIX/AIS files
https://github.com/kodular/aia-kit
aia ais aix app-inventor extension kodular
Last synced: about 1 month ago
JSON representation
Read, Parse, Edit, Write, Analyze AIA/AIX/AIS files
- Host: GitHub
- URL: https://github.com/kodular/aia-kit
- Owner: Kodular
- Created: 2023-07-09T17:33:21.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-04-08T16:58:35.000Z (about 2 months ago)
- Last Synced: 2025-04-20T15:44:24.670Z (about 1 month ago)
- Topics: aia, ais, aix, app-inventor, extension, kodular
- Language: TypeScript
- Homepage:
- Size: 328 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# aia-kit

Read, Parse, Edit, Write AIA/AIX/AIS files.
## Installation
```bash
npm install aia-kit
```## Usage
```javascript
import { AIAReader } from 'aia-kit'const aiaFile = await fs.readFile('test/fixtures/Test.aia')
const aiaFileBlob = new Blob([aiaFile])const project = await AIAReader.read(aiaFileBlob)
expect(project).toBeDefined()
expect(project.name).toBe('Test')
expect(project.screens.length).toBe(1)
expect(project.screens[0].name).toBe('Screen1')
```
_Code taken from `test/aia.test.js`_---
Copyright (c) 2023 Junnovate, LLC