Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

jet-paths

Package Overview
Dependencies
Maintainers
0
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jet-paths

Preprend strings in an object with the value from a base-key.

  • 1.0.9
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1.2K
increased by16.16%
Maintainers
0
Weekly downloads
 
Created
Source

About jet-paths

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.

Installation
  • npm i -s jet-paths
How it works

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.

Sample code:
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 :)

Keywords

FAQs

Package last updated on 06 Aug 2024

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc