npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@hikerfeed/restful-resource

v1.0.3

Published

<p align="center"><img width="300" src="https://hikerfeed.com/_nuxt/img/f3d1507.svg"></p>

Downloads

3

Readme


RESTful Resource

The JavaScript URL builder for creating consistent and RESTful resource requests, so you don't have to.


Installation

npm i @hikerfeed/restful-resource --save

Usage

RESTful Resource is a JavaScript URL builder for creating consistent and RESTful resource requests, so you don't have to. RESTful resource does not make HTTP requests. Instead, it generates the proper routes that would match the controller name. For example, take this Laravel route which maps to a controller action:

Route::get('/users', 'UsersController@index');

You can utilize RESTful resource like:

import { createRestfulResource } from '@hikerfeed/restful-resource';
import http from 'my-http';

const UserResource = createRestfulResource('users');

http.get(UserResource.index()); // => '/users'

Calling UserResource.index() will return the appropriate route for REST conventions, in this case for the index action. Each resource method accepts a String, Number, or Array. You may call any of the standard REST methods as such:

const UserResource = createRestfulResource('users');

http.get(UserResource.index()); // => '/users'
http.post(UserResource.create()); // => '/users/create'
http.post(UserResource.store()); // => '/users'
http.get(UserResource.show(3)); // => '/users/3'
http.get(UserResource.edit(4)); // => '/users/4/edit'
http.patch(UserResource.update(5)); // => '/users/5'
http.delete(UserResource.destroy('5')); // => '/users/5'

This works nicely with a framework like Laravel which allows you to define a controller as a resource:

Route::resource('users', 'UsersController');

Nested Routes

In plenty of cases you may have nested routes such as /users/2/photos. In this case, you can simply add a . between names. If you want to pass an id to the parent and child resource you may pass an Array of numbers.

const UserPhotosResource = createRestfulResource('users.photos');

http.get(UserPhotosResource.index(2)); // => '/users/2/photos'
http.get(UserPhotosResource.update([2, 33])); // => '/users/2/photos/33'

Excluding Routes

Let's say you have a controller on your backend that excludes the actions such as create, edit. In Laravel, it may look like this:

Route::resource('hikes', 'HikesController')->except(['create', 'edit']);

This would generate the following routes:

  • GET /hikes HikesController@index
  • POST /hikes HikesController@store
  • GET /hikes HikesController@show
  • POST /hikes HikesController@update
  • POST /hikes HikesController@destroy

To ensure you're not calling routes that don't exist on your API, you can pass the except option like so:

// typescript
import { createRestfulResource, RestfulResource } from '@hikerfeed/restful-resource';

const HikesResource = createRestfulResource('hikes', {
  except: [RestfulResource.Routes.Create, RestfulResource.Routes.Edit],
});

HikesResource.index(); // /hikes
HikesResource.create() // throws an Error
// javascript
import { createRestfulResource } from '@hikerfeed/restful-resource';

const HikesResource = createRestfulResource('hikes', {
  except: ['create', 'edit'],
});

HikesResource.index(); // /hikes
HikesResource.create() // throws an Error

Only Including Certain Routes

On the contrary, you may want to only include certain routes. In Laravel this may look like:

Route::resource('hikes', 'HikesController')->only(['index']);

You may pass an only option like so:

// typescript
import { createRestfulResource, RestfulResource } from '@hikerfeed/restful-resource';

const HikesResource = createRestfulResource('hikes', {
  only: [RestfulResource.Routes.Index],
});

HikesResource.index(); // /hikes
HikesResource.edit() // throws an Error
// javascript
import { createRestfulResource } from '@hikerfeed/restful-resource';

const HikesResource = createRestfulResource('hikes', {
  only: ['index'],
});

HikesResource.index(); // /hikes
HikesResource.edit() // throws an Error