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

justgood

v1.1.7

Published

Api Media Service Bridge

Downloads

25

Readme

API.imjustgood.com

This Node.js library provides easy access to the API.imjustgood.com API, allowing you to interact with various features and functionalities offered by the service.

Installation

You can install this library via npm or by cloning the GitHub repository.

Using npm

  1. Install the library in your Node.js project using npm:

    npm install justgood
  2. In your project, require the library and create an instance of Imjustgood by providing your API key:

     const Imjustgood = require('justgood');
     const apiKey = 'your-api-key';
     const imjustgood = new Imjustgood(apiKey);

Using git clone

  1. You can clone the repository from GitHub using the following command:

    git clone https://github.com/goodop/api.imjustgood.com
  2. Install the library's dependencies:

    cd api.imjustgood.com
    npm install
  3. In your project, require the library and create an instance of Imjustgood by providing your API key:

    const Imjustgood = require('justgood');
       
    const apiKey = 'your-api-key';
    const imjustgood = new Imjustgood(apiKey);

API Key Requirement

To use this library, you'll need an API key, which serves as a private key and can be obtained by contacting our team. The API key is necessary to improve server security and maintenance.

Example Usage

Here's an example of how to use this library to call the status method and get the server status:

const Imjustgood = require('justgood');

const apiKey = 'your-api-key';
const imjustgood = new Imjustgood(apiKey);

// Example: Call the status method
imjustgood.status()
  .then(response => {
    console.log(response);
  })
  .catch(error => {
    console.error(error);
  });

License

This project is licensed under the BSD 3-Clause License. See the LICENSE file for details.

Documentation

This library provides methods to scrape content from various social media platforms.

YouTube

To retrieve YouTube content, use the youtube method. Provide the query as the parameter.

// Example: Get YouTube content
const query = 'your-query';
const result = imjustgood.youtube(query);
console.log(result);

Tiktok

For TikTok content, use the tiktok method. Pass the TikTok username as the parameter.

// Example: Get TikTok content
const username = 'tiktok-username';
const result = imjustgood.tiktok(username);
console.log(result);

Instagram

To fetch content from Instagram, use the instagram method with the Instagram username.

// Example: Get Instagram content
const username = 'instagram-username';
const result = imjustgood.instagram(username);
console.log(result);

Twitter

For Twitter content, use the twitter method with the Twitter username

// Example: Get Twitter content
const username = 'twitter-username';
const result = imjustgood.twitter(username);
console.log(result);

See more in Documentation