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

2.0.2 • 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 20.14.0 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

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

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": [
    ...
  ]
}

Types

A comprehensive library of types representing the results of attempting to parse documents can be imported:

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

Documents

Instructions

Formatting
Conditions

Identifiers

Warnings

Errors

Readme

Keywords

none

Package Sidebar

Install

npm i @skitscript/parser-nodejs

Weekly Downloads

25

Version

2.0.2

License

MIT

Unpacked Size

84 kB

Total Files

101

Last publish

Collaborators

  • siliconspecter
  • skitscript-ci