Skip to content

Instantly share code, notes, and snippets.

@LinZap
Created June 11, 2019 15:55
Show Gist options
  • Save LinZap/46f1191b562c247e05fd8a977987df6a to your computer and use it in GitHub Desktop.
Save LinZap/46f1191b562c247e05fd8a977987df6a to your computer and use it in GitHub Desktop.
Node.js - HK11
node ./hk11.js "narto"
const cheerio = require('cheerio')
const request = require('request')
let url = 'http://99770.hhxxee.com/search/s.aspx'
let search = process.argv[2]
let config = { form: { tbSTxt: search } }
request.post(url, config, function (error, response, body) {
let $ = cheerio.load(body)
$('.cListTitle>a').each(function(i, elem){
console.log($(this).text() + " : " + $(this).attr('href'))
})
});
火影忍者[72] : http://99770.hhxxee.com/comic/4296
博人傳BORUTO[10] : http://99770.hhxxee.com/comic/30105
火影忍者[完结] : http://99770.hhxxee.com/comic/168
あの日の向こう側[完结] : http://99770.hhxxee.com/comic/27664
NARUTO-ナルト-(日文)[47] : http://99770.hhxxee.com/comic/7350
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment