
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
active-activity-search
Advanced tools
Active.com Activity Search v2 HTTP API client.
npm install active-activity-search --save
var client = require('active-activity-search')({
key: '******',
url: 'https://api.amp.active.com/v2/search' // optional as this is the default url
})
client
.query('basketball')
.category('event')
.city('Denver')
.state('CO')
.zip('80202')
.radius(50)
.search(function (error, data) {
if (error) throw error
console.log(data)
})
client
.query('basketball')
.category('event')
.city('Denver')
.state('CO')
.zip('80202')
.radius(50)
.search()
.then(function (data) {
console.log(data)
})
.catch(function (error) {
console.error(error.message)
})
User-Agent
request header including the name and version of the client.DEBUG=active-activity-search*
.ACTIVE_ACTIVITY_API_KEY="*****"
ACTIVE_ACTIVITY_API_URL="https://api.amp.active.com/v2/search" # optional as this is the default url
active([options])
The following arguments can also be specified via environment variables.
[options]: (Object)
options object.
[key]: (String)
API key.
process.env.ACTIVE_API_KEY
[url]: (String)
API base URL.
process.env.ACTIVE_API_URL
client: (Object)
API client object..options()
(read only)options: (Object)
options object.Invoke corresponding accessor for each snake_cased parameter in given source object.
set({ show_suggest: true, query: 'running' })
NOTE: see http://developer.active.com/docs/read/v2_Activity_API_Search
For each parameter a corresponding camelCased accessor (getter/setter) function is exposed.
0.9.0 - 2016-01-08
./accessor
to npm install function-accessor --save
.FAQs
Active.com Activity Search v2 HTTP API client.
The npm package active-activity-search receives a total of 1 weekly downloads. As such, active-activity-search popularity was classified as not popular.
We found that active-activity-search 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
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.