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

node-yts

v1.0.5

Published

node module for YTS torrents search

Downloads

14

Readme

node-yts

a command line node module for YTS torrents search

node-yts - Yifi Torrents Search RESTful API in node js.

Installation: npm install node-yts

Usage: var movie = require("node-yts").movie; var yts = require("node-yts").yts;

For fetching a movie informatin, pass the movie ID as parameter. For example: movie.getMovie(6189) - returns a JSON object for movie. This can be accessed using movie.movie or the native methods in Movie object.

For searching movies, pass movie Title or IMDB ID, actor Name or actor's IMDB code, or Director's name or IMDB code. For example, yts.search("The BFG") gives search results for "The BFG" movie. The results can be accessed using yts.movies property in YTS instance.

For getting list of movies, call list_movies method For example: yts.list_movies() gets the first 20 movies of "page number" 1 and stores in movies property of the instance. Can be accessed using yts.movies.

For movies from specific page and specified limit, call yts.list_movies() with the values. For example: yts.list_movies(3,20) gets 30 movies from page 3 and stores in movies property.

By default, if no parameters are sent, the request will fetch 20 results from page 1.

API: Methods in YTS: 1. list_movies 2. search(query_term)

Methods in Movie: 1. getMovie(movie_id) 2. getTitle() 3. getDescription() 4. getURL() 5. getID() 6. getIMDBCode() 7. getTorrents() 8. getLanguage() 9. getRating() 10. getGenre() 11. openInBrowser(url) - to open URLs in browser. (An app chooser is opened to select default web browser) 12. getBackgroundImage() - full image of the film.