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 🙏

© 2025 – Pkg Stats / Ryan Hefner

spellchecker-real-time

v1.0.1

Published

A spell checker that automatically corrects words in real time.

Readme

SpellChecker 🪄✨

SpellChecker é uma biblioteca de correção ortográfica em tempo real baseada na distância de Levenshtein e na normalização de palavras.
Ideal para aplicações que exigem sugestões inteligentes durante a digitação, com suporte a acentos e foco total no idioma português brasileiro (PT-BR).


✅ Pronta para Produção

A biblioteca está pronta para uso em produção, podendo ser utilizada em seus projetos. Caso haja algum problema ou sugestão, por favor, abrir um issue no GitHub.

Github: https://github.com/thigasfella/spellchecker


🔍 Funcionalidades

  • Correção automática com base em distância de Levenshtein (0, 1 e 2).
  • Suporte a acentos, pontuação e capitalização contextual.
  • Sugestão automática da palavra correta em tempo real.
  • Componente flutuante com sugestão clicável.
  • Otimizada para inputs e textareas comuns.

🌐 Suporte de Idioma

Atualmente, a SpellChecker oferece suporte exclusivo para PT-BR.

🔜 Em breve:

  • Possibilidade de usar um dicionário customizado: Basta colocar seu arquivo dicionario.json na pasta /public do projeto onde a lib estiver instalada.

📦 Instalação

npm install spellchecker-real-time

🚀 Como Usar

1. Em projetos React / Next.js (App Router)

⚠️ É obrigatório marcar o componente como "use client".

"use client";
import { useEffect } from "react";
import { SpellChecker } from "spellchecker-real-time";

export default function Home() {
  useEffect(() => {
    SpellChecker("component", (res: any) => {
      console.log("Correção retornada:", res);
    });
  }, []);

  return (
    <div className="h-[100vh] w-[100vw] bg-[#1A1A1A]">
      <div className="flex items-center justify-center h-full">
        <textarea
          id="component"
          className="w-[50vw] h-[300px] p-3 resize-none border border-gray-300 rounded-lg focus:outline-none shadow-sm text-white"
        ></textarea>
      </div>
    </div>
  );
}

🧠 Sobre o funcionamento

  • A biblioteca detecta a palavra onde o cursor está posicionado e sugere uma correção automática, caso detecte erros com base no dicionário.
  • O componente de sugestão aparece flutuando acima do texto e pode ser clicado para substituir a palavra incorreta.
  • O sistema reconhece palavras com e sem acento, e aplica regras inteligentes para manter pontuação e capitalização.

🧭 Roadmap

  • [x] Correção ortográfica em tempo real
  • [x] Sugestão de palavras com distância 1 e 2
  • [x] Compatibilidade com React / Next.js
  • [ ] Suporte a múltiplos idiomas
  • [ ] Dicionários personalizados via /public/dicionario.json
  • [ ] Barra com múltiplas sugestões selecionáveis

⚠️ Requisitos

  • O campo a ser verificado deve ter um id correspondente ao valor passado na função SpellChecker.
  • Funciona apenas com campos <input type="text"> e <textarea>.

📄 Licença

Este projeto está sob a licença MIT.