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

jieba-mecab-tool

v0.0.1

Published

Some useful tools

Downloads

3

Readme

jieba / mecab 分词小工具

  • 对结巴分词和mecab分词的浅层封装, 方便通过shell快速调用;

安装

  1. 安装npm包相关依赖
npm install
  1. build生成代码:
npm run build
  1. 安装mecab分词库: 由于目前没有找到node版的mecab库, 因此需要使用者自行去安装python环境以及mecab库, 可以参考官方文档: https://taku910.github.io/mecab/

使用

全局安装使用

如果已经全局安装, 那么使用的时候可以直接使用以下指令

  1. 结巴分词的使用:
chao-jieba
  1. mecab的使用:
chao-mecab

本地安装使用

未全局安装, 会出现找不到指令的情况, 此时可以通过以下指令在本地局部环境运行:

  1. 结巴分词的使用:
npm run chao-jieba
  1. mecab的使用:
npm run chao-mecab

TODO与后续规划

  • 有时间可能会做一些迭代, 但是目前优先级不高~