Canal and River Trust (CRT) Notice Scraper
npm install @onthecut/crt-notice-scraper
import {
getNotices,
getNotice
} from '@onthecut/crt-notice-scraper';
// Retreive all notice summaries (CRT Notice Search Results)
const notices = await getNotices()
// Get detailed information on individual notices
const url = 'https://canalrivertrust.org.uk/notices/14494-boston-lock';
const notice = await getNotice(url);
MIT