Scraping microservice for TC39 proposals 😸
/: Serves an HTML page with every proposal in the TC39 pipeline./finished: Serves an HTML page with stage 4 proposals in the TC39 pipeline./active: Serves an HTML page with stage 1, stage 2, and stage 3 proposals in the TC39 pipeline./proposed: Serves an HTML page with stage 0 proposals in the TC39 pipeline.
/proposals: Returns a JSON object with every proposal in the TC39 pipeline./proposals/finished: Returns a JSON object with stage 4 proposals in the TC39 pipeline./proposals/active: Returns a JSON object with stage 1, stage 2, and stage 3 proposals in the TC39 pipeline./proposals/proposed: Returns a JSON object with stage 0 proposals in the TC39 pipeline.
prop.fetchAll(done)- Invokesdone(err, proposals)with every proposal in the TC39 pipeline.prop.fetchFinished(done)- Invokesdone(err, proposals)with stage 4 proposals in the TC39 pipeline.prop.fetchActive(done)- Invokesdone(err, proposals)with stage 1, stage 2, and stage 3 proposals in the TC39 pipeline.prop.fetchProposed(done)- Invokesdone(err, proposals)with stage 0 proposals in the TC39 pipeline.
MIT
