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

resource-path

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

resource-path

Tiny module to generate resource paths for APIs

  • 1.4.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

/resource/:path

Travis npm Coverage Status npm npm

Tiny module to generate resource paths for APIs, with zero dependencies

This module implements Angular's resource URL definition, so that you can easily interact with an API.

Example:

import resource from 'resource-path';

const input = '/path/to/resource/:id';
const params = {
  id: 123
};

resource(input, params);
// Returns: /path/to/resource/123
const input = '/path/to/resource/:id/something/:param2';
const params = {
  id: 123
};

resource(input, params);
// Returns: /path/to/resource/123

Getting started

Install:

npm install --save resource-path
# or if you prefer yarn
yarn add resource-path

Usage

import resource from 'resource-path';

resource(path, [params]);
  • path {string} Is the path to the resource. Either a full URL or a relative path. It can contain identifiers in the form of :identifier in any part of the path.
  • params {Object} An object with key/value pairs, where the keys are identifiers in the path, and the value is what will be replaced in it.

The resource method will return the path, substituting the params whenever if finds an indentifier. As soon as it finds an identifier without a specified parameter it stops.This way you can define full API paths that are reusable.

Testing

Tests are located in the tests folder, and are written with ava.

Contributing

Feel free to send any PR with new features, more test cases...

License

This project is licensed under the MIT License.

Analytics

Keywords

FAQs

Package last updated on 06 Feb 2017

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