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

lobby-editor

v1.0.30

Published

Lobby's open source editor.

Readme

Lobby Logo

Lobby Editor

A familiar, plug and play, extendable rich text editor for React, based on ProseMirror, built using TipTap

Install

Have a fully functioning editor for your project in no time. First, install using

 npm install "@tiptap/[email protected]" "@tiptap/[email protected]" remixicon lobby-editor

or if you are using yarn

yarn add "@tiptap/[email protected]" "@tiptap/[email protected]" remixicon lobby-editor

Peer Dependencies

Lobby editor requires peer dependencies

  "@tiptap/core": "2.0.0-beta.174",
  "@tiptap/react": "2.0.0-beta.114",

Note

To use the BubbleMenu that comes with our editor Tailwind must be installed.

Usage

Use as desired in your project like below

import { useLobbyEditor, LobbyEditor } from "lobby-editor"
const App = () => {
  const editor = useLobbyEditor();
  return (
    <div className="App">
      <LobbyEditor editor={editor} editable={true} />
    </div>
  )
}
export default App

Congrats! You should now have the lobby editor running!

Styling

In your App.js import styling or if you are using Next.js import in your _app.js

Install RemixIcon

import "lobby-editor/dist/es/styles.css";
import "remixicon/fonts/remixicon.css";

Extensions

Let's now have a look at adding some custom extensions.

Define your custom extension.

// 1. Import the extension
import BulletList from '@tiptap/extension-bullet-list'

// 2. Overwrite the keyboard shortcuts
const CustomBulletList = BulletList.extend({
 addKeyboardShortcuts() {
   return {
     'Mod-l': () => this.editor.commands.toggleBulletList(),
   }
 },
})

Next pass it to createLobbyEditor like this

let editor = useLobbyEditor({
  customExtensions: [
    CustomBulletList(),
    ...
  ]
})

Have a look at the getting started to see more example.

Note

  1. setContent needs to be inside a useEffect because every time the editor is typed in/updated it rerenders the entire component and setContent will be called indefinitely

Further Documentation

See More in Lobby.

Contributions

Contributions and recommendations are always welcome! Open an issue or discussion in GitHub and outline your ideas. Our team will promptly provide feedback.

Code linting

An eslint config ensures a consistent code style. To check for errors, run 

yarn lint

or

npm run lint

Make sure it’s passing before sending a pull request.

Further Questions?

Message us in Discord or Create a discussion on GitHub

Community

For help, discussion about best practices, or any other conversation that would benefit from being searchable: Discuss Lobby on GitHub

Meet the team and introduce yourself to other devs in the community: Discuss Lobby on Discord