1.0.2 • Published 6 months ago

aia-kit v1.0.2

Weekly downloads
-
License
ISC
Repository
github
Last release
6 months ago

aia-kit

npm

Read, Parse, Edit, Write AIA/AIX/AIS files.

Installation

npm install aia-kit

Usage

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

1.0.2

6 months ago

1.0.1

8 months ago

1.0.0

8 months ago

0.0.1

8 months ago