Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Car2Go REST API
car2go can be used to access car2go's API. If you'd like to use their API and this module you must first request an oauth key and secret.
npm install car2go
var car2go = require("car2go").createClient({
key: MY_OAUTH_KEY,
secret: MY_OAUTH_SECRET
});
// get a list of available cars in Toronto in JSON format
car2go.vehicles({
format: "json",
loc: "Toronto"
}, function(err, cars) {
if (err) {
return console.log(err);
}
console.log(cars);
});
List of all the cities that car2go operates in.
car2go.locations(function(err, locations) {
console.log(locations);
});
// Output
[
{
"countryCode": "CA",
"defaultLanguage": "en",
"locationId": 13,
"locationName": "Toronto",
"mapSection": {
"center": {
"latitude": 43.65396,
"longitude": -79.38635
},
"lowerRight": {
"latitude": 43.6263638049989,
"longitude": -79.2129903230651
},
"upperLeft": {
"latitude": 43.67671718155003,
"longitude": -79.55942239476869
}
},
"timezone": "Canada/Eastern"
},
... more cities
]
List available vehicles in a city
loc
Required - The city to list vehicles in.format
- The output format. Must be kml
or json
, defaults to kml
.car2go.vehicles({
format: "json",
loc: "Toronto"
}, function(err, vehicles) {
console.log(vehicles);
});
// Output
{
address: 'Green P-141 Greenlaw Ave(S of St Clair Ave W)',
coordinates: [ -79.44774, 43.6762, 0 ],
engineType: 'CE',
exterior: 'GOOD',
fuel: 100,
interior: 'GOOD',
name: 'BPXL726',
vin: 'WMEEJ3BA8DK643640'
},
... more cars
FAQs
Car2Go REST API
We found that car2go demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.