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

webmaker-mediasync

v0.1.32

Published

Webmaker MediaSync ==================

Downloads

6

Readme

Webmaker MediaSync

MediaSync is a Node.js serverside NPM module designed to make searching for media from popular Web services easy with a universal API.

Initialization

The initialization of the module as very few parameters currently. They are as follows:

App Instance: A reference to your application's Express/Connect instance. This is used to attach the searching route to your application options - An object with the following properties:

  • serviceKeys - required - An object containing API keys for each service you plan to use.
  • limit - Used to specify the amount of results returned in a query. Defaults to 30.
  • cacheExpiry - Used to specify how long searches should be cached, in seconds. Defaults to 1800 seconds.

Example:

var mediasync = require( "webmaker-mediasync" );

mediasync( expressApp, {
  serviceKeys: {
    soundcloud: "d2idm12domodo12mdo12mdo2d12d",
    flickr: "d2di3mdi3di23md23idm",
    gihpy: "21d12d21d2d12d12d"
  }
});

Supported Services

Currently we support query based searching with the following services: YouTube, SoundCloud, Giphy and Flickr.

NOTE: YouTube does not currently require an API Key to be given to use it.

Usage

When initialized, the application will add one endpoint to your application to be used to make searches.

/api/webmaker/search/{SERVICE}?{QUERYSTRING_PARAMETERS}

SERVICE - Expects a value matching one of the following:

  • YouTube, SoundCloud, Giphy, All and Flickr. These can be any case, we lowercase this value before evaluating.
    • In the case of All, every supported service will have the provided query used against all supported services.

QUERYSTRING_PARAMETERS - These are used to specify more specific values, such as:

  • q - The search query that you are performing. Must be a URL safe (encoded) value.
  • page - Used to specify the page of results you want. A query may have 400 total results, but you will only ever recieve an amount of results matching what's specified in limit on initialization. Increase this value to get the next set of results.

Example Requests

  • /api/webmaker/search/YouTube?page=1&q=kittens
  • /api/webmaker/search/YouTube?page=3&q=cute%20kittens
  • /api/webmaker/search/YouTube?page=10&q=%22cute%20kittens%22

Responses

Responses are JSON.

Example success responses:

{
  status: "okay",
  currentPage: 3,
  results: [
    // Objects containing data
  ],
  total: 235
}

Example failure responses:

{
  status: "failure",
  reason: "[webmaker-mediasync]: Retrieving data for YouTube failed",
  error: {} // Some sort of object. For example, it could be from the service's API.
}