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

@collabchron/notiq

v1.1.2

Published

Notion AI + Figma + Excalidraw + 3D + Code Editor + Markdown Editor + Real-time Collaboration + Embeds + More = Notiq

Readme

Tests Codacy Badge License: MIT npm npm Repo Size Repo Stars Repo Watchers Repo Forks Repo Open Issues Repo Open Pull Requests Repo Visitors

Notiq Banner

📸 Screenshots

✨ Features

🤖 AI-Powered Writing Assistant

  • Smart Writing: GPT-4 integration for content improvement, grammar fixes, and style adjustments
  • AI Chat: Ask questions about your document content and get contextual responses
  • Auto-completion: Intelligent text suggestions and completions
  • Content Enhancement: Make text longer/shorter, create step-by-step guides, simplify language

✏️ Rich Text Editor

  • Lexical Framework: Built on Facebook's modern Lexical editor framework
  • WYSIWYG Editing: What-you-see-is-what-you-get editing experience
  • Markdown Support: Full markdown shortcuts and live transformers
  • Slash Commands: Type "/" for quick content insertion and formatting
  • Floating Toolbars: Context-sensitive formatting tools

🧩 Advanced Content Blocks

  • Media: Images, inline images, YouTube videos, Twitter embeds
  • Interactive: Polls, step-by-step guides, collapsible sections
  • Technical: Code blocks with syntax highlighting, mathematical equations (KaTeX)
  • Design: Excalidraw drawings, Figma embeds
  • Layout: Multi-column layouts, resizable panels, tables
  • Callouts: Hint blocks and special callout sections

🎨 User Experience

  • Drag & Drop: Draggable blocks and content reordering
  • Speech-to-Text: Voice input capabilities
  • Link Previews: Rich link previews with metadata
  • Theme Support: Dark/light mode with seamless switching
  • Keyboard Shortcuts: Comprehensive shortcut system
  • Real-time Collaboration: Shared editing context

🚀 Library Usage

Notiq can be used as a standalone editor in your React/Next.js projects.

Installation

npm install @collabchron/notiq

Integration

1. Import Styles

Import the CSS file in your root layout file (e.g., app/layout.tsx or pages/_app.tsx):

import "@collabchron/notiq/styles.css";

2. Usage in your component

"use client";

import { Editor } from "@collabchron/notiq";

export default function MyEditorPage() {
  return (
    <Editor 
      isEditable={true}
      aiConfig={{
        apiEndpoint: "/api/ai", // Your AI completion endpoint
      }}
      uploadConfig={{
        uploadHandler: async (file) => {
          // Your custom upload logic (e.g., S3, Cloudinary)
          return { url: "https://your-storage.com/file.png" };
        }
      }}
    />
  );
}

🛠️ Local Development

If you want to contribute or run the development environment:

Installation

npm install

# or

yarn install

# or

pnpm install

Environment Setup

Create a .env.local file with your API keys:

OPENAI_API_KEY=your_openai_api_key_here

NEXT_PUBLIC_EDGESTORE_ACCESS_KEY=your_edgestore_key

NEXT_PUBLIC_EDGESTORE_SECRET_KEY=your_edgestore_secret

Development

npm run dev

# or

yarn dev

# or

pnpm dev

Open http://localhost:3000 to start writing!

🏗️ Architecture

Core Components

  • Editor Core (/src/components/editor/Core.tsx) - Main editor container with Lexical integration
  • Plugins (/src/components/editor/plugins/) - 40+ feature plugins for rich functionality
  • Nodes (/src/components/editor/nodes/) - 20+ custom content block types
  • AI Integration (/src/components/ui/ai/) - AI-powered writing assistance
  • Toolbar System - Rich formatting toolbar with contextual actions

Plugin System

Notiq uses an extensible plugin architecture:

import { Editor } from '@/components/editor'

function MyApp() {
  return (
    <Editor
      plugins={[
        // Built-in plugins
        'toolbar',
        'slash-commands',
        'ai-assistant',
        'drag-drop',
        // Custom plugins
        MyCustomPlugin
      ]}
    />
  )
}

🎯 Use Cases

  • Documentation: Technical docs, API references, user guides
  • Content Creation: Blog posts, articles, marketing content
  • Note-taking: Personal notes, meeting minutes, research
  • Collaborative Writing: Team documents, shared knowledge bases
  • Educational Content: Tutorials, courses, interactive lessons

🛠️ Development

Adding Custom Nodes

import { DecoratorNode } from 'lexical'

export class MyCustomNode extends DecoratorNode<JSX.Element> {
  static getType(): string {
    return 'my-custom-node'
  }
  
  createDOM(): HTMLElement {
    return document.createElement('div')
  }
  
  decorate(): JSX.Element {
    return <MyCustomComponent />
  }
}

Creating Plugins

import { useLexicalComposerContext } from '@lexical/react/LexicalComposerContext'

export function MyPlugin() {
  const [editor] = useLexicalComposerContext()
  
  // Plugin logic here
  
  return null
}

📦 Building for Production

npm run build
npm run start

🤝 Contributing

We welcome contributions! Please see our Contributing Guidelines for details on how to get started, submitting bug reports, and suggesting enhancements.

Please note that this project is released with a Contributor Covenant Code of Conduct. By participating in this project you agree to abide by its terms.

📄 License

MIT License - see the LICENSE file for details.

🆘 Support


Built with ❤️ using Lexical, Next.js, and OpenAI