10.0.6 • Published 6 months ago

@autoview/compiler v10.0.6

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

@autoview/compiler

Embedded TypeScript compiler for @autoview/agent.

It is for validation feedback, and bundling for actual running.

NodeJS Environment

Connect to the worker in the node_modules.

import { Driver, WorkerConnector } from "tgrid";
import {
  IAutoViewCompilerService,
  IAutoViewCompilerResult
} from "@autoview/compiler";

const worker: WorkerConnector<null, null, IAutoViewCompilerService> =
  new WorkerConnector(null, null);
await worker.connect(
  `${__dirname}/../../node_modules/@autoview/compiler/lib/worker/index.js`,
);
const service: Driver<IAutoViewCompilerService> = worker.getDriver();
await service.initialize({...});

const result: IAutoViewCompilerResult = await service.compile("...");
await worker.close();

Browser Environment

Compile the worker from by below URL.

import { Driver, WorkerConnector } from "tgrid";
import {
  IAutoViewCompilerService,
  IAutoViewCompilerResult
} from "@autoview/compiler";

const worker: WorkerConnector<null, null, IAutoViewCompilerService> =
  new WorkerConnector(null, null);
await worker.compile(
  await fetch(
    "https://wrtnlabs.io/autoview/compiler/worker.js",
  ).then((r) => r.json()),
);
const service: Driver<IAutoViewCompilerService> = worker.getDriver();
await service.initialize({...});

const result: IAutoViewCompilerResult = await service.compile("...");
await worker.close();
10.0.6

6 months ago

10.0.5

6 months ago

10.0.4

6 months ago

10.0.3

6 months ago

10.0.2

6 months ago

10.0.1

6 months ago

10.0.0

6 months ago

9.0.0

6 months ago

8.0.3

6 months ago

8.0.2

6 months ago

7.3.1

7 months ago

7.3.0

7 months ago

7.2.3

7 months ago

7.2.2

7 months ago

7.2.1

7 months ago

7.2.0

7 months ago

7.1.2

7 months ago

7.1.1

7 months ago

7.1.0

7 months ago

7.0.1

7 months ago

7.0.0

7 months ago

6.1.1

7 months ago

6.1.0

8 months ago

6.0.0

8 months ago

5.1.1

8 months ago

5.1.0

8 months ago

5.0.1

8 months ago

5.0.0

8 months ago

4.0.0

8 months ago

3.1.0

8 months ago

3.0.1

8 months ago

3.0.0

8 months ago

2.0.30

8 months ago

2.0.29

8 months ago

2.0.28

8 months ago

2.0.27

8 months ago

2.0.26

8 months ago

2.0.25

8 months ago

2.0.24

8 months ago

2.0.23

8 months ago

2.0.22

8 months ago

2.0.21

8 months ago

2.0.19

8 months ago

2.0.18

8 months ago

2.0.17

8 months ago

2.0.16

8 months ago

2.0.15

8 months ago

2.0.14

8 months ago

2.0.13

8 months ago

2.0.12

8 months ago

2.0.11

8 months ago

2.0.9

8 months ago

2.0.8

8 months ago

2.0.7

8 months ago

2.0.6

8 months ago

2.0.5

8 months ago

2.0.4

8 months ago

2.0.3

8 months ago

2.0.0

8 months ago

1.0.0

8 months ago

0.1.3

9 months ago

0.1.0-dev.20250304

9 months ago