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

opencalais-tagging

v2.2.0

Published

Tag content using Opencalais

Downloads

15

Readme

Opencalais Tagging

GitHub stars GitHub watchers

Open Calais attaches intelligent metadata-tags to your unstructured content, enabling powerful text analytics. The Open Calais natural language processing engine automatically analyzes and tags your input files in such a way that your consuming application can both easily pinpoint relevant data, and effectively leverage the invaluable intelligence and insights contained within the text. Please refer to the complete documentation here.

Installation

$ npm install opencalais-tagging

Usage

  • Get your free opencalais key from here.

A promise is returned if a callback function is not provided.

const calais  = require('opencalais-tagging'),
      options = {
        content     : 'The content to tag',
        accessToken : 'opencalais-key'
      }
	
const response = await calais.tag(options)

console.log('Response : ', response)

An optional callbck function can also be provided.

const calais  = require('opencalais-tagging'),
      options = {
        content     : 'The content to tag',
        accessToken : 'opencalais-key'
      }
	  
calais.tag(options, (error, data) => {
  console.log('Response : ', data)
})

Options

####The following query parameters can be provided.

| Options | Description | Values | Default Value | |--------------------------|----------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------|------------------| | content (MANDATORY) | Content to be tagged. | string | none | | accessToken (MANDATORY) | Obtained access token | string | none | | Content-Type | Indicates the input mime type. | text/html, text/xml, text/raw, application/pdf | text/raw | | omitOutputtingOriginalText | Excludes the original text from the output. Highly recommended for large input files. | boolean | true | | outputFormat | Defines the output format. | xml/rdf, application/json, text/n3 | application/json | | x-calais-contentClass | Specifies the genre of the input document. Highly recommended for optimal extraction when input files are news stories or research reports. | news, research | none | | x-calais-language | Indicates the language of the input text. | English, French, Spanish | none | | x-calais-selectiveTags | Lets you specify a custom set of metadata tag types to be included in the output. | additionalcontactdetails, company, country, deal, company, industry, person, socialtags, topic | none |

License

This project is licensed under the MIT License - see the LICENSE file for details