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

@lore/collections

v1.0.0-beta.1

Published

A lore hook that creates collections for AJAX communication

Downloads

13

Readme

@lore/collections

Purpose

Iterates through all models in lore.models and creates a corresponding Collections for each of them. This is done so we can fetch collections of resources and not just individual resources.

Dependant Hooks

Depends on the models hook being run first as it iterates through lore.models.

Needed improvements

  1. Provide an option to not create collections for certain models.
  2. PascalCase the collections that get exposed on lore.collections (i.e. lore.collections.Todo instead of lore.collections.todo)

Override Rules

Collections typically need three things in order to be able to fetch a collection of resources

  1. The URL of the API server to hit
  2. The path to hit on the server (/todos for example)
  3. A method to parse the server response, to extract the meaningful data from any paginated metadata wrapper that might exist
  4. Which Model it should create and pass the resultant data to, to make sure each resource also gets parsed correctly in turn

For apps that only have a single API server, the endpoint the collections should use is the same the app is configured for by default. So that can usually be obtained from apiRoot in config/models.js. The path that should be appended to the API Root can be derived from the models (todo) and whether or not pluraize has been set to true or false in config/models.js. The Model that knows how to parse the resultant resources is typically going to be the model with the same name as the colletion (lore.models.todo). The only piece that can't be derived from other parts of the configuration is the parse method the Collection should use to extract the collection of resources from the other metadata like pagination. So that method should be specified in config/collection.js. If the API follows consistent conventions across all collection endpoints (and there's only a single API server) there isn't a common reason to ever need to define a src/collection/todo.js file. If you do, it's to override the previous semi-deriable configuration with something specific to that collection.

So given all of that, the collections hook builds the configuration for each Collection it creates using a set of rules.

  1. It first pulls in config/models.js to get the apiRoot and pluralize setting.
  2. It then overrides that config with anything it finds in config/collections.js, which will also include the parse method collections should use.
  3. It then looks to see if collection file has been created in src/collections that matches the name of the model (todo in this example). If one exists, it then overrides the previous config with anything it finds in that file.
  4. Finally, it fills in anything that still hasn't been defined using conventions (such as deriving the urlRoot from the model name and the pluralize setting).

Example Usage

Given a project where a todo model has been created like so:

src
|-models
  |-todo.js

This hook will find it, create a Collection with it, and expose the collection on lore.collections.todo.