
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
a more easy use URL
yarn add lazy-url
see index.test.ts see lazy.spec.ts.snap
let actual = new LazyURL('api/v5/repos/xxxx/xxxx/contents', 'https://gitee.com/api/v5');
// => https://gitee.com/api/api/v5/repos/xxxx/xxxx/contents
let actual2 = new LazyURL('/api/v5/repos/xxxx/xxxx/contents', 'https://gitee.com/api/v5');
// => https://gitee.com/api/v5/repos/xxxx/xxxx/contents
let actual3 = new LazyURL('api/v5/repos/xxxx/xxxx/contents', 'https://gitee.com/api/v5/');
// => https://gitee.com/api/v5/api/v5/repos/xxxx/xxxx/contents
// @ts-ignore
import LazyURL from 'lazy-url';
let a1 = 'https://gitee.com/api/v5/';
let a2 = '/api/v5/repos/xxxx/xxxx/contents';
let u = new LazyURL(a2, a1);
console.dir(u.toRealString());
// => 'https://gitee.com/api/v5/repos/xxxx/xxxx/contents'
// @ts-ignore
u = new URL(a2, a1);
console.dir(u.toString());
// => 'https://gitee.com/api/v5/repos/xxxx/xxxx/contents'
a1 = '/api/v5/';
a2 = '/api/v5/repos/xxxx/xxxx/contents';
u = new LazyURL(a2, a1);
// => '/api/v5/repos/xxxx/xxxx/contents'
console.dir(u.toRealString());
// @ts-ignore
u = new URL(a2, a1);
// => throw error
console.dir(u.toString());
FAQs
a more easy use URL
The npm package lazy-url receives a total of 603 weekly downloads. As such, lazy-url popularity was classified as not popular.
We found that lazy-url 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.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.