get information about baseball parks
npm install rx-ballpark-services#rx-ballpark-services
Simple set of services used to fetch basic information and weather data about Major Baseball Parks.
Weather Data is provided by Weather Company Data for IBM Bluemix
###Initialize
``
import RxBallparkServices from 'rx-ballpark-services';
const rbs = RxBallparkServices({
weather: {
apiRoot:
}
});
`
###Initialize (try mode)
Bluemix account 'not required'
Weather Company Data for IBM Bluemix 'not required'
`
import RxBallparkServices from 'rx-ballpark-services';
const rbs = RxBallparkServices({
weather: {
apiRoot: 'dummy',
useMockData: true
}
});
`
``
rbs.BallparksWeatherService
.all()
.subscribe(r => / do something /, / handle error /);
```
rbs.BallparksService
.byId(req.params.id)
.subscribe(r => / do something /, / handle error /);