1.1.1 • Published 6 years ago

uscis-service-center-processing-times v1.1.1

Weekly downloads
4
License
ISC
Repository
github
Last release
6 years ago

uscis-service-center-processing-times

Get processing time for one or all USCIS service centers

Build Status Greenkeeper badge

IDNameLast update
990VSC - Vermont Service CenterJanuary 5, 2018
991CSC - California Service CenterJanuary 5, 2018
992NSC - Nebraska Service CenterJanuary 5, 2018
993TSC - Texas Service CenterJanuary 5, 2018
1031YSC - Potomac Service CenterJanuary 5, 2018

Usage as CLI

Requires: latest Node LTS

Load all service centers

npx uscis-service-center-processing-times

Load single service center by passing center ID

npx uscis-service-center-processing-times 992

Usage with Node

Install with npm install uscis-service-center-processing-times

cost getServiceCenterProcessingTimes = require('uscis-service-center-processing-times')

// get all
getServiceCenterProcessingTimes()
  .then(result => {
    // {
    //   "990": {
    //     "shortName": "VSC",
    //     "longName": "Vermont Service Center",
    //     "lastUpdated": "January 5, 2018",
    //     "processingTimes": {
    //       "I-102": {
    //         "Initial issuance or replacement of a Form I-94": "April 24, 2017"
    //       },
    //       ...
    //     }
    //   },
    //   ...
    // }
  })
  .catch(console.log)

// get one
getServiceCenterProcessingTimes({id: 990})
  .then(result => {
    // {
    //   "shortName": "VSC",
    //   "longName": "Vermont Service Center",
    //   "lastUpdated": "January 5, 2018",
    //   "processingTimes": {
    //     "I-102": {
    //       "Initial issuance or replacement of a Form I-94": "April 24, 2017"
    //     },
    //     ...
    //   }
    // }
  })
  .catch(console.log)

License

Apache 2.0

1.1.1

6 years ago

1.1.0

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago