Security News
The Risks of Misguided Research in Supply Chain Security
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
#agent-next
The idea is simple:
send(req, cb)
..url
, .headers
and .body
.status
, .headers
and .body
.Given that:
// cookie support? Easy!
function agent(req, cb) {
setCookies(req)
send(req, function(err, res) {
saveCookies(res)
cb(err, res)
})
}
// redirects? Easy!
function aagent(req, cb) {
agent(req, function(err, res) {
if (isRedirect(res)) return aagent(redirectRequest(req, res), cb)
cb(err, res)
})
}
// Everything is easy.
req
to errors, etc)Request
, Response
prototypes in the vein of superagent
Agent
abstraction as an easy way to setup your send
function and issueing requests.
It is tremendously simpler and far more flexible. For example, you can swap entire http implementation and still have all advanced functionality available.
basic
var agent = require('agent-next')()
agent
.get('http://google.com/search/q=hello+world')
.end(function(err, res) {
console.log(err || res.body)
})
advanced
// Setup an agent specifically for the Github API from scratch
var Agent = require('agent-next')
var github = Agent.basic()
.use(Agent.redirects(10))
.use(Agent.unzip())
.use(Agent.parser())
.use(Agent.serialize())
.use(Agent.baseUrl('https://api.github.com'))
.use(function(req, send, cb) {
req.headers['user-agent'] = 'test application'
req.headers['accept'] = 'application/vnd.github.preview'
send(req, function(err, res) {
if (err) return cb(err)
if (res.ok) return cb(null, res.body)
cb(new Error(res.body.message))
})
})
// get some info about agent-next
github
.get('/repos/eldargab/agent-next')
.end(function(err, msg) {
console.log(err || msg.description)
})
setup with options
var Agent = require('agent-next')
// superagent like
var agent = Agent()
// tweak
var agent = Agent({
cookies: true, // enable cookies
unzip: false, // disable gzip support
parser: fn, // set custom body parser
timeout: 30000,
baseUrl: 'http://example.com'
})
send
function accepts strings, buffers and
simple streams
as an request body.req.url
must be an instance of Agent.Url
, not a string or an arbitrary object.cb(err, res)
, not just cb(err)
.via npm
npm install agent-next
(The MIT License)
Copyright (c) 2013 Eldar Gabdullin eldargab@gmail.com
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
The idea is simple:
We found that agent-next 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
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.