xvideos
一个 API库。
安装
$ npm install @rodrigogs/xvideos
用法
const xvideos = require ( '@rodrigogs/xvideos' ) ;
//-- Inside an async function --//
// Retrieve fresh videos
const fresh = await xvideos . videos . fresh ( { page : 1 } ) ;
console . log ( fresh . videos ) ; // { url, path, title, duration, profile: { name, url }, views, }
console . log ( fresh . pagination . current ) ; // 1
console . log ( fresh . pagination . pages ) ; // [1, 2, 3, 4, 5...]
console . log ( fresh . hasNext ( ) ) ; //
1