UNPKG
extratorrentapi
Version:
latest (1.2.0)
1.2.0
1.1.1
1.1.0
1.0.1
1.0.0
Volatile wrapper around extratorrent.cc
extratorrentapi
/
test.js
11 lines
(9 loc)
•
232 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
var
extratorrent =
require
(
'./extratorrent'
); extratorrent .
search
(
'Suicide Squad'
)
// Promise style
.
then
(
function
(
torrents
) {
console
.
log
(torrents); }) .
catch
(
function
(
error
) {
console
.
error
(error); });