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

@ripple-ts/language-server

v0.2.208

Published

Language Server Protocol implementation for Ripple

Readme

@ripple-ts/language-server

Language Server Protocol (LSP) implementation for Ripple. This package provides language intelligence features for Ripple files and can be integrated into any editor that supports LSP.

Features

  • TypeScript integration via Volar
  • Ripple syntax diagnostics
  • IntelliSense and autocomplete
  • Go to definition
  • Find references
  • Hover information

Installation

npm install @ripple-ts/language-server -g

Editor Integration

This language server can be integrated into any editor that supports LSP. There are also specialized plugins for popular editors.

VS Code

Use the [official extension](https://marketplace.visualstudio.com/items?itemName=Ripple-TS.ripple-ts-vscode-plugin It uses this language server internally.

WebStorm/IntelliJ

  1. Install the language server:
    npm install @ripple-ts/language-server -g
  2. Install the LSP4IJ plugin.
  3. Add a new language server in it
  4. Specify ripple-language-server --stdio as the command in it.
  5. Go to Mappings —> File name patterns and add a new value with File name patterns set to *.ripple and Language Id set to `ripple.

Neovim (v0.11+)

Use the official plugin.

  1. Install nvim-treesitter.

  2. Install the plugin.

    {
      "Ripple-TS/ripple",
      config = function(plugin)
        vim.opt.rtp:append(plugin.dir .. "/packages/nvim-plugin")
        require("ripple").setup(plugin)
      end
    }

    If you're using another plugin manager and wish to share installation instructions, please consider opening a PR.

Sublime Text

Until the plugin lands on Package Control you need to install it from the packaged release:

  1. Make sure Package Control is installed, then install the LSP package (Tools → Command Palette… → Package Control: Install Package → LSP).
  2. Clone this repository.
  3. Go into packages/sublime-text-plugin/ directory and run:
    npm run build
    This will create a Ripple.sublime-package file in the same directory.
  4. In Sublime Text, open Preferences → Browse Packages…, go up one level, and open the Installed Packages/ directory.
  5. Copy the Ripple.sublime-package file into Installed Packages/ and restart Sublime Text.

Diagnostics, completions, and other features should work in .ripple files now.

Standalone Usage

You can use the language server in any other editor that supports LSP. You can install it globally:

npm install -g @ripple-ts/language-server

Then run the server with:

ripple-language-server --stdio

Or you can run it via npx without installing:

npx @ripple-ts/language-server --stdio