10.0.6 • Published 7 months ago

@autoview/compiler v10.0.6

Weekly downloads
-
License
MIT
Repository
github
Last release
7 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

7 months ago

10.0.5

7 months ago

10.0.4

7 months ago

10.0.3

7 months ago

10.0.2

7 months ago

10.0.1

7 months ago

10.0.0

7 months ago

9.0.0

7 months ago

8.0.3

7 months ago

8.0.2

7 months ago

7.3.1

9 months ago

7.3.0

9 months ago

7.2.3

9 months ago

7.2.2

9 months ago

7.2.1

9 months ago

7.2.0

9 months ago

7.1.2

9 months ago

7.1.1

9 months ago

7.1.0

9 months ago

7.0.1

9 months ago

7.0.0

9 months ago

6.1.1

9 months ago

6.1.0

9 months ago

6.0.0

9 months ago

5.1.1

9 months ago

5.1.0

9 months ago

5.0.1

9 months ago

5.0.0

9 months ago

4.0.0

9 months ago

3.1.0

9 months ago

3.0.1

9 months ago

3.0.0

9 months ago

2.0.30

10 months ago

2.0.29

10 months ago

2.0.28

10 months ago

2.0.27

10 months ago

2.0.26

10 months ago

2.0.25

10 months ago

2.0.24

10 months ago

2.0.23

10 months ago

2.0.22

10 months ago

2.0.21

10 months ago

2.0.19

10 months ago

2.0.18

10 months ago

2.0.17

10 months ago

2.0.16

10 months ago

2.0.15

10 months ago

2.0.14

10 months ago

2.0.13

10 months ago

2.0.12

10 months ago

2.0.11

10 months ago

2.0.9

10 months ago

2.0.8

10 months ago

2.0.7

10 months ago

2.0.6

10 months ago

2.0.5

10 months ago

2.0.4

10 months ago

2.0.3

10 months ago

2.0.0

10 months ago

1.0.0

10 months ago

0.1.3

10 months ago

0.1.0-dev.20250304

10 months ago