Skip to content

Scraping microservice for TC39 proposals 😸

Notifications You must be signed in to change notification settings

hemanth/prop-tc39

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

prop-tc39

Scraping microservice for TC39 proposals 😸

Website

  • /: 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.

Web API

  • /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.

Package API

  • prop.fetchAll(done) - Invokes done(err, proposals) with every proposal in the TC39 pipeline.
  • prop.fetchFinished(done) - Invokes done(err, proposals) with stage 4 proposals in the TC39 pipeline.
  • prop.fetchActive(done) - Invokes done(err, proposals) with stage 1, stage 2, and stage 3 proposals in the TC39 pipeline.
  • prop.fetchProposed(done) - Invokes done(err, proposals) with stage 0 proposals in the TC39 pipeline.

Screenshot

License

MIT

About

Scraping microservice for TC39 proposals 😸

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 57.8%
  • CSS 24.2%
  • HTML 18.0%