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

rack-node

v1.1.0

Published

write like human, search like computer

Downloads

10

Readme

rack-node

rack-node Enables you convert your Java query written in natural language to a list of Java APIs. Search engines primarily does keyword-matching, and they perform better when you add API keywords in your search query. The primary use of this project is by other integrated search engines like searching from IDE or other coding websites. Still, you can you rack-node for your personal use for searching smartly or when you just can't find the right result from Google.

To install it, run

$ npm install -g rack-node

The primary use is list related APIs for a natural language query

$ rack --query="how to send email in Java"

The output will be something like

IOException: 0.8899051646791389
Session: 0.8507142707028266
MimeMessage: 0.7511904511713776
File: 0.7406194353819655
Object: 0.4976190976572451
Content: 0.44785718789152057
...

It lists the API and relevant score calculated by RACK. if you don't like the scores, use -q flag. It will give you an output like the following.

Message IOException Session MimeMessage File Object Content ArrayList ...

oclif Version Downloads/week License

Usage

$ npm install -g rack-node

$ rack --query="how to send email in Java"
IOException: 0.8899051646791389
Session: 0.8507142707028266
MimeMessage: 0.7511904511713776
File: 0.7406194353819655
Object: 0.4976190976572451
Content: 0.44785718789152057
...

$ rack --query="how to send email in Java" --score=kkc
Message: 1
IOException: 0.9375
Session: 0.8125
File: 0.7500000000000001
MimeMessage: 0.6875
Object: 0.625
Content: 0.5625
...

$ rack (-v|--version|version)
rack-node/1.0.3 win32-x64 node-v12.16.1
$ rack -h
write like human, search like computer

USAGE
  $ rack QUERY

OPTIONS
  -h, --help               show CLI help
  -q, --quiet              only list the APIs
  -s, --score=kac|kkc|all  [default: all] the scoring to order suggestion
  -v, --version            show CLI version

Copyright

This module is primarily a JavaScript translation of the Rack Server Java implementation. Check here to see original work.

M. Masudur Rahman, Chanchal K. Roy and David Lo, "RACK: Code Search in the IDE using Crowdsourced 
Knowledge", In Proceeding of The 39th International Conference on Software Engineering (ICSE 2017), 
pp. 51--54, Buenos Aires, Argentina, May, 2017