npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@xano/xanoscript-monaco-editor

v0.1.8

Published

Monaco editor with XanoScript language support

Readme

██╗  ██╗███████╗    ███╗   ███╗ ██████╗ ███╗   ██╗ █████╗  ██████╗ ██████╗
╚██╗██╔╝██╔════╝    ████╗ ████║██╔═══██╗████╗  ██║██╔══██╗██╔════╝██╔═══██╗
 ╚███╔╝ ███████╗    ██╔████╔██║██║   ██║██╔██╗ ██║███████║██║     ██║   ██║
 ██╔██╗ ╚════██║    ██║╚██╔╝██║██║   ██║██║╚██╗██║██╔══██║██║     ██║   ██║
██╔╝ ██╗███████║    ██║ ╚═╝ ██║╚██████╔╝██║ ╚████║██║  ██║╚██████╗╚██████╔╝
╚═╝  ╚═╝╚══════╝    ╚═╝     ╚═╝ ╚═════╝ ╚═╝  ╚═══╝╚═╝  ╚═╝ ╚═════╝ ╚═════╝
                    ╔═══════════════════════════════════════╗
                    ║     XanoScript Monaco Editor          ║
                    ╚═══════════════════════════════════════╝

XanoScript Monaco Editor

A Monaco Editor wrapper that provides XanoScript language support with syntax highlighting, autocompletion, and language server integration via web worker.

Features

  • Full XanoScript syntax highlighting
  • Intelligent autocompletion
  • Real-time error checking and diagnostics
  • Hover tooltips with documentation
  • Language Server Protocol (LSP) support via web worker

Prerequisites

  • Node.js (version specified in .nvmrc - if using nvm run nvm use)
  • npm

Installation

npm install @xano/xanoscript-monaco-editor

Project Structure

xanoscript-monaco-editor/
├── src/                      # TypeScript source code
│   ├── XanoScriptEditor.ts   # Main editor class
│   ├── main.ts               # Browser entry point
│   └── style.css             # Editor styles
├── tests/                    # Test files
├── public/                   # Static assets and compiled worker
└── dist/                     # Build output

Key Files

  • src/XanoScriptEditor.ts - The XanoscriptMonacoEditor class containing editor initialization and iframe messaging logic
  • src/main.ts - Browser entry point that instantiates the editor with dependency injection
  • esbuild.js - Build script that compiles the language server into a web worker

Development

Quick Start

# Install dependencies
npm install

# Compile language server worker and start dev server
npm run start-dev

Available Scripts

| Command | Description | |---------|-------------| | npm run start-dev | Compile worker + start dev server | | npm run dev | Start Vite dev server (requires compiled worker) | | npm run compile | Type-check and compile language server worker | | npm run build | Create production build | | npm run build:prod | Create optimized production build | | npm test | Run test suite |

Build Process

Step 1: Compile Language Server Worker

Before running the dev server or building, compile the language server worker:

npm run compile

This command:

  1. Runs TypeScript type checking (npm run check-types)
  2. Compiles the language server using esbuild
  3. Outputs the worker to public/worker.js

The compiled worker bundles the complete language server functionality into a browser-compatible web worker that communicates with Monaco Editor via the Language Server Protocol.

Step 2: Development or Production Build

# Development with hot reloading
npm run dev

# Production build
npm run build

Testing

Run the test suite:

npm test

Tests use Vitest with jsdom for browser API simulation and comprehensive mocking of Monaco Editor dependencies.

Dependencies

Contributing

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Ensure tests pass (npm test)
  5. Ensure build succeeds (npm run build)
  6. Submit a pull request

License

Proprietary - Xano, Inc.