All documentation
Reference

JavaScript Install Verification Example

A simple JavaScript package verification doc showing how to test install, import, and expected results.

JavaScript

Overview

This page is a simple installation verification page for the PulseGrid JavaScript package. Use it when you want to confirm: - the package installed correctly - import works - the installed version is visible in your project - your project can resolve the PulseGrid package

Setup

1. Install pulsegrid from npm. 2. Run a simple import test. 3. Check package listing with npm list. 4. Confirm createPulseGrid is available.

Code example

JavaScript Install Verification Example
# install
npm install pulsegrid

# show package in this project
npm list pulsegrid

# import test
node -e "import('pulsegrid').then(m => console.log(typeof m.createPulseGrid === 'function' ? 'import ok from npm' : 'import failed'))"

Notes

Expected result examples: Import test: import ok from npm npm list pulsegrid may show: your-project-name └── pulsegrid@0.1.0