
Research
/Security News
Toptal’s GitHub Organization Hijacked: 10 Malicious Packages Published
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.
url-assembler
Advanced tools
Assemble urls from route-like templates (/path/:param)
Chainable utility to assemble URLs from templates
npm install --save url-assembler
UrlAssembler()
.template('/users/:user')
.param('user', 8)
.param('include', 'address')
.query({
some: 'thing',
other: 1234
})
.toString() // => "/users/8?include=address&some=thing&other=1234
Since you more often than not need a hostname and a protocol to go with this
UrlAssembler('http://my.domain.com:9000')
.template('/groups/:group/users/:user')
.param({
group: 'admin',
user: 'floby'
})
.toString() // => "http://my.domain.9000/groups/admins/users/floby"
You can also incrementally build your URL.
UrlAssembler('https://api.site.com/')
.prefix('/v2')
.segment('/users/:user')
.segment('/projects/:project')
.segment('/summary')
.param({
user: 'floby',
project: 'node-url-assembler'
})
.toString() // => 'https://api.site.com/v2/users/floby/projects/node-url-assembler/summary'
Every method (except toString()
) returns a new instance of UrlAssembler
. You can
consider that UrlAssembler
instances are immutable.
In addition, an instance of UrlAssembler
is a valid object to pass
to url.format()
or any function accepting this kind of object as
parameter.
new UrlAssembler([baseUrl])
baseUrl
: will be used for protocol, hostname, port and other base url kind of stuff.new UrlAssembler(urlAssembler)
urlAssembler
: an existing instance of UrlAssembler
UrlAssembler
.template(template)
template
a string with dynamic part noted as :myparam
. For example '/hello/:param/world'
UrlAssembler
with this template configured.prefix(subPath)
subPath
: this string will be added at the beginning of the path part of the URLsubPath
will be added after the previous prefix but before the rest of the pathUrlAssembler
.segment(subPathTemplate)
subPathTemplate
is a string of a segment to add to the path of the URL. It can have a templatized parameter eg. '/user/:user'
UrlAssembler
.param(key, value[, strict])
key
: a string of the dynamic part to replacevalue
: a string to replace the dynamic part withUrlAssembler
with the parameter key
replaced with value
.
If strict
is falsy, the key will be added as query parameter..param(params[, strict])
params
: a hash of key/value to give to the method abovestrict
a flag passed to the method aboveUrlAssembler
with all the parameters from the params
replaced.query(key, value)
key
: the name of the parameter to configurevalue
: the value of the parameter to configureUrlAssembler
with the key=value
pair added as
query parameter with the qs
module..query(params)
.toString()
, .valueOf()
, toJSON()
UrlAssembler
instance. Path parameters not yet replaced will appear as :param_name
.Tests are written with mocha and covered with istanbul
You can run the tests with npm test
.
Anyone is welcome to submit issues and pull requests
Copyright (c) 2015 Florent Jaby
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
Assemble urls from route-like templates (/path/:param)
The npm package url-assembler receives a total of 6,330 weekly downloads. As such, url-assembler popularity was classified as popular.
We found that url-assembler 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.
Research
/Security News
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.
Research
/Security News
Socket researchers investigate 4 malicious npm and PyPI packages with 56,000+ downloads that install surveillance malware.
Security News
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.