@skitscript/parser-nodejs
TypeScript icon, indicating that this package has built-in type declarations

1.0.6 • Public • Published

Skitscript Parser (NodeJS) Continuous Integration License Renovate enabled npm npm type definitions

A Skitscript document parser targeting NodeJS.

Installation

Dependencies

This is a NPM package. It targets NodeJS 16.11.1 or newer on the following operating systems:

  • Ubuntu 22.04
  • Ubuntu 20.04
  • macOS 13 (Ventura)
  • macOS 12 (Monterey)
  • macOS 11 (Big Sur)
  • Windows Server 2022
  • Windows Server 2019

It is likely also possible to use this package as part of a web browser application through tools such as webpack. This has not been tested, however.

Install as a runtime dependency

If your application uses this as a runtime dependency, install it like any other NPM package:

npm install --save @skitscript/parser-nodejs

Additionally install the types package:

npm install --save-dev @skitscript/types-nodejs

Install @skitscript/types-nodejs as a peer dependency

If you are developing a package which includes types from @skitscript/types-nodejs in its public API, additionally install it as a peer dependency so that consumers of your package know to include it as well:

npm install --save-peer @skitscript/types-nodejs

Install as a development dependency

If this is used when building your application and not at runtime, install it as a development dependency:

npm install --save-dev @skitscript/parser-nodejs @skitscript/types-nodejs

Usage

Validating identifiers

Import the identifierIsValid function, and provide it with a string containing a possible identifier:

import { identifierIsValid } from "@skitscript/parser-nodejs";

console.log(identifierIsValid(`Example Identifier`));
console.log(identifierIsValid(`???`));
true
false

Parsing documents

Import the parse function, and provide it with a string containing your document's content:

import { parse } from "@skitscript/parser-nodejs";

const parsed = parse(documentContentString);

console.log(parsed);
{
  "type": "valid",
  "instructions": [
    ...
  ],
  "warnings": [
    ...
  ],
  "identifierInstances": [
    ...
  ]
}
{
  "type": "invalid",
  "errors": [
    ...
  ],
  "warnings": [
    ...
  ],
  "identifierInstances": [
    ...
  ]
}

Readme

Keywords

none

Package Sidebar

Install

npm i @skitscript/parser-nodejs

Weekly Downloads

20

Version

1.0.6

License

MIT

Unpacked Size

54.5 kB

Total Files

9

Last publish

Collaborators

  • skitscript-ci
  • jameswilddev