Script Kit Logo
Script Kit
by John Lindquist
Browse ScriptsBlogDiscuss
Aseem Taneja
Scripts /

Aseem Taneja

turn-any-page-into-an-api

by Aseem Taneja

// Name: Frontend Masters
// Description: Browse courses from frontendmasters.com
// Author: Aseem Taneja
// Twitter: @aseemtaneja
import '@johnlindquist/kit';
const list = await npm('@aseemtaneja/kit-list');
const { choices } = await list('https://frontendmasters.com/courses/', {
containerSelector: '.MediaItem',
hrefSelector: 'h2 a',
descriptionSelector: '.description',
metaSelector: '.Instructor .name',
});
const itemUrl = await arg('Go to', choices);
await $`open ${itemUrl}`;
created by
John Lindquist
GitHub