
Security News
ECMAScript 2025 Finalized with Iterator Helpers, Set Methods, RegExp.escape, and More
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Using npm:
$ npm i url-assist
In a browser :
<script src="structkit-full.iife.js"></script>
<script src="url-assist.js"></script>
Import on cjs
const {isUrlExtValid} = require('url-assist');
Import on ESM or TS
import {isUrlExtValid} from 'url-assist';
In a browser
urs.isUrlExtValid('https://example.com/example.js', 'js')
keep in mind urs
is used as global library at html
CJS, ESM and TS use this code below
isUrlExtValid('https://example.com/example.js', 'js')
match pattern against extension in url
isUrlExtValid('https://example.com/example.js', 'js')// true
isUrlExtValid('https://example.com/example.js', 'css')// false
getHostDetails('https://www.example.com')
// => {
// "domainDetails": {
// "domain": "example",
// "domainWithTld": "example.com",
// "subdomain": "www",
// "tld": "com"
// },
// "hash": "",
// "hostname": 'www.example.com',
// "href": 'https://www.example.com',
// "password": "",
// "pathname": "",
// "port": "",
// "protocol": "https",
// "search": '',
// "user": ''
// }
isHttps('https://example.com')// true
Verify your pattern and url structure
data = urs.urlPattern("/:id", "/test")
data.isValid() // true
data.getParam() // {id: 'test'}
Verify your pattern and url structure only number as parameter
data = urs.urlPattern("/:id<number>", "/1")
data.isValid() // true
data.getParam() // {id: '1'}
data = urlComposer('https://example.com')
data.getToString() // 'https://example.com'
data.setDomainSubdomain("api")
data.getToString() // 'https://api.example.com'
data.setProtocol("http")
data.getToString() // http://api.example.com/
qsParse("test=1&test2=11") //{"test": 11,"test2": 11}
qsStringify({"test": 11,"test2": 11}) //test=1&test2=11
joinUrlPath('https://example.com','test') //https://example.com/test
isUrlValidFormat('https://example.com')// true
isUrlValidFormat('ftp://example.com')// false
isHttps('https://example.com')// true
isHttps('http://example.com')// false
slugify("Hello world 123")// "hello-world-123"
FAQs
URL library at your ease
The npm package url-assist receives a total of 37 weekly downloads. As such, url-assist popularity was classified as not popular.
We found that url-assist demonstrated a healthy version release cadence and project activity because the last version was released less than 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
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.
Research
North Korean threat actors linked to the Contagious Interview campaign return with 35 new malicious npm packages using a stealthy multi-stage malware loader.