0.0.14 • Published 6 years ago

ice-engine v0.0.14

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

ice-engine

Ice Engine is an experimental, lightweight and ultra high performance XML parsing TypeScript engine, implementing regex-free, tokenizing tree builder and output formatter.

Getting started

Installation

Add ice-engine to the dependencies of your package.json, or hit:

yarn add ice-engine

Don't forget to run yarn after updating the package.json file.

Integration

import { Parser as Ice } from 'ice-engine';

const nodes = Ice.fromXml(
  '<node id="1">' +
  'This is a text node.' +
  '<void id="2" />' +
  'This is an another text node.' +
  '</node>');
const source = Ice.toXml(nodes);

License

MIT

0.0.14

6 years ago

0.0.13

6 years ago

0.0.12

6 years ago

0.0.11

6 years ago

0.0.9

6 years ago

0.0.8

6 years ago

0.0.7

6 years ago

0.0.6

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago