Package Exports
- grout-js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (grout-js) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Grout.js
A small (~2KB) JavaScript module for reading Bever Control's rock grouting files.
Key Features
- Parse Bever Control's custom XML files (ver. 1.5)
- Typescript support
Rock Grouting Toolkit
Rock Grouting Toolkit is using Grout.js to generate each graph.

This module helps you create a similar application.
Install
You can install Grout.js from a CDN or NPM. Note that it's named grout-js.
CDN
You can download the latest version of Grout.js from the content delivery network (CDN) jsDelivr.
Regular:
<script src="https://cdn.jsdelivr.net/gh/andrewisen/grout.js/dist/grout.min.js"></script>As Module:
<script src="https://cdn.jsdelivr.net/gh/andrewisen/grout.js/dist/grout.module.min.js"></script>NPM
You can use NPM to install Grout.js. Simply run:
npm i grout-jsHow To Use
Regular:
import * from 'grout-js';
var grout = new Grout();
var operatingLogs = groutFile.init(xmlString);As Module:
import { Grout } from 'grout-js';
var grout = new Grout();
var operatingLogs = groutFile.init(xmlString);Todo
Example
Coming soon