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 🙏

© 2024 – Pkg Stats / Ryan Hefner

okesa

v1.0.3

Published

Okesa: LLM-powered Natural Language Processing 💬

Downloads

15

Readme

Okesa 🪐

Okesa is a general-purpose, powerful and versatile NLP (Natural Language Processing) library for Node.js, designed to provide a wide range of NLP features for text analysis and processing.

NOTE: THIS MODULE IS STILL UNDER DEVELOPMENT AND IS NOT READY TO USE YET.

Background

The name "Okesa" is derived from the Japanese word for "priest’s outer robe, a rectangle sewn most often of seven panels," reflecting the library's versatility and ability to handle complex text processing tasks with ease, much like the intricate stitching of a traditional robe. Okesa embodies the Zen tradition of simplicity and precision, mirroring the library's approach to NLP. Okesa aims to make advanced text analysis accessible to developers of all levels, offering intuitive APIs and comprehensive documentation. Whether you're building chatbots, analyzing customer feedback, or extracting insights from large datasets, Okesa provides the tools you need to enhance your applications with powerful NLP capabilities.

Features

  1. Tokenization: Split text into tokens for further analysis.
  2. Part-of-Speech (POS) Tagging: Assign grammatical categories to words.
  3. Named Entity Recognition (NER): Identify and classify named entities.
  4. Sentiment Analysis: Determine sentiment (positive, negative, neutral) in text.
  5. Language Detection: Identify the language of a given text.
  6. Text Classification: Categorize text into predefined classes.
  7. Text Summarization: Generate concise summaries of text.
  8. Keyword Extraction: Identify important keywords or phrases.
  9. Spell Checking: Identify and correct spelling errors.
  10. Stemming and Lemmatization: Reduce words to their base form.
  11. Dependency Parsing: Analyze grammatical structure of sentences.

Installation

You can install Okesa via npm:

npm install okesa

Usage

Here's a simple example demonstrating how to tokenize text using Okesa:

const { tokenize } = require('okesa');

const text = 'This is a sample sentence.';
const tokens = tokenize(text);

console.log(tokens);

For more details and advanced usage, check out the documentation.

Contributing

Contributions are welcome! For bug reports, feature requests, or other inquiries, please contact us at [email protected].