
Security News
Package Maintainers Call for Improvements to GitHub’s New npm Security Plan
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Recursively formats an object containing strings, so that each string value is prepended with its containing objects prefix property.
console.log(jetPaths({
Base: '/api',
Users: {
Base: '/users',
Get: '/all',
},
}));
// Outputs
{
Base: '/api',
Users: {
Base: '/api/users',
Get: '/api/users/all',
},
};
In my expressJS server, I would generally store my routes in an object like so
and pass them to express Router()
objects:
// My object
const Paths = {
Base: '/api',
Users: {
Base: '/users',
Add: '/add',
...
// And express router object
userRouter.get(Paths.Users.Add, (res, rej) => {
...
})
This worked fine. But for my front-end and my .spec
tests I needed the full path for each route. I didn't like having to do:
const ADD_USERS_PATH = `${Paths.Base/Paths.User.Base/Paths.Users.Add}`,
GET_USERS_PATH = `${Paths.Base/Paths.User.Base/Paths.Users.Get}`,
...
over and over again. So I decided to write a recursive function that sets this up for me.
npm i -s jet-paths
The default import provides the function jetPaths(obj, prefix (optional, default is 'Base'))
. An object with the same keys is returned with the prefix added for the parent object and all nested objects.
import jetPaths from 'jet-paths';
const PREFIX = 'Root';
const Paths = {
[PREFIX]: '/api',
Users: {
[PREFIX]: '/users',
Get: '/all',
Add: '/add',
Update: '/update',
Delete: '/delete/:id',
},
Posts: {
[PREFIX]: '/posts',
Get: '/all',
Add: '/add',
Update: '/update',
Delete: '/delete/:id',
Private: {
[PREFIX]: '/private',
Get: '/all',
Delete: '/delete/:id',
},
},
} as const;
console.log(jetPaths(Paths, PREFIX));
// The above code will print out
{
Root: '/api',
Users: {
Root: '/api/users',
Get: '/api/users/all',
Add: '/api/users/add',
Update: '/api/users/update',
Delete: '/api/users/delete/:id'
},
Posts: {
Root: '/api/posts',
Get: '/api/posts/all',
Add: '/api/posts/add',
Update: '/api/posts/update',
Delete: '/api/posts/delete/:id',
Private: {
Root: '/api/posts/private',
Get: '/api/posts/private/all',
Delete: '/api/posts/private/delete/:id'
}
}
}
Oh yeah, whole thing is fully typesafe!
Happy web-deving :)
FAQs
Preprend strings in an object with the value from a base-key.
The npm package jet-paths receives a total of 1,492 weekly downloads. As such, jet-paths popularity was classified as popular.
We found that jet-paths demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.