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

generate-corpus

v2.1.7

Published

Generate a corpus based on a Google search or from a set of urls

Downloads

23

Readme

This module can build a corpus based on a google search or from a set of URLs. It also gives the possibility to make basic semantic analysis on the corpus.

Please wait ... still in progress. Your are welcome to contribute or suggest new ideas !

Install

npm install generate-corpus --save

Build a corpus from a google search

const corpus = require("generate-corpus");


const options = {
    host : "google.be",
    num : 100,
    qs: {
        q: "barbecue",
        pws : 0,
    }
};

try {
  const corpus = await corpus.generateCorpus(options);
  console.log(corpus); // Excellent data structure about the corpus !
} catch(error) {
  console.log(error);
}

Build a corpus from a set of URLs


const search = require("generate-corpus");

const options = {
    urls : ["http://www.site.com", "http://www.site2.com", ...]
};

try {
  const corpus = await corpus.generateCorpus(options);
  console.log(corpus); 
} catch(error) {
  console.log(error);
}

Understanding the options

In both previous examples, the option json structure can contain the following parameters :

For the google search

  • host : the google domain (google.com, google.fr, ... ). Default value : google.com.

  • num : the size of the SERP (number of pages to search).

  • qs : it used to customize the search on google : q : it the search keyword (replace spaces by +). It can be also an array of keywords. qs can also contains other Google search params, see this document : https://moz.com/ugc/the-ultimate-guide-to-the-google-search-parameters.

  • User-Agent : not mandatory. Default value is : 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'

Other options

  • proxy : the proxy url used to make the google search & retrieve page content : http://user:password@host:port.

Proxy parameter can be replaced by proxyList if you are using a list of proxies (see below).

With proxies

If you want to use only one proxy for all http requests : The options can contain the proxy url


const options = {
    host : "google.fr",
    num : 15,
    qs: {
        q: "choisir son champagne",
        pws : 0
    },
    language : 'fr',
    proxy : "http://user:password@host:port"
};

If you want to user severals proxies In this case, you can use the nodejs module ("simple proxies")[https://github.com/christophebe/simple-proxies] This component load proxies from a text file or a DB.