Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
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',
Get: '/all',
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 return with the prefix added for the parent object and all nested objects.
import jetPaths from '../src';
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'
}
}
}
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,107 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
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.