6.0.0 • Published 2 years ago

europa-environment-worker v6.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

europa-environment-worker

A Europa environment for a worker.

Build Status License Release

Install

Install using your preferred package manager. For example;

$ npm install --save europa-environment-worker

You will most likely never need to depend on europa-environment-worker directly. Instead, you will probably want to install the europa-worker package in order to use Europa within a worker.

API

import { EuropaCore, EuropaOptions } from 'europa-core';
import { AnyNode, Element, WorkerEnvironment } from 'europa-environment-worker';

const _environment = Symbol();

class Europa extends EuropaCore<AnyNode, Element> {
  private static readonly [_environment] = new WorkerEnvironment();

  constructor(options?: EuropaOptions) {
    super({ environment: Europa[_environment], options });
  }
}

Bugs

If you have any problems with this Europa environment or would like to see changes currently in development you can do so here.

Contributors

If you want to contribute, you're a legend! Information on how you can do so can be found in CONTRIBUTING.md. We want your suggestions and pull requests!

A list of Europa contributors can be found in AUTHORS.md.

License

Copyright © 2022 neocotic

See LICENSE.md for more information on our MIT license.