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

express-mongoose-ra-json-server

v0.2.2

Published

creates express.js routes from a mongoose model for ra-data-json-server

Downloads

225

Readme

express-mongoose-ra-json-server

npm

Create express.js routes from a mongoose model for ra-data-json-server. Very useful for rapid prototyping with MongoDB, Mongoose, and react-admin.
Example/demo project is available here: express-mongoose-ra-json-server-demo

Installation

NPM: npm add express-mongoose-ra-json-server
Yarn: yarn add express-mongoose-ra-json-server
PNPM: pnpm add express-mongoose-ra-json-server

Client Usage

import jsonServerProvider from "ra-data-json-server"; // Use ra-data-json-server
const apiUrl = "api/admin"; // Fill this in with your own URL or whatever you wish.
const dataProvider = jsonServerProvider(apiUrl, httpClient);

Usage

Refer to the typescript definitions in index.ts for a more complete information.

Basic Usage

import raExpressMongoose from "express-mongoose-ra-json-server";
router.use("/user", raExpressMongoose(userModel));

More Configuration Options

Pass in the options as a second parameter to the function.
The currently exported typedefs contain just enough comments to describe what they do.

export interface raExpressMongooseOptions<T> {
  /** Fields to search from ?q (used for autofill and search) */
  q?: string[];

  /** Base name for ACLs (e.g. list operation does baseName.list) */
  aclName?: string;

  /** Fields to allow regex based search (non-exact search) */
  allowedRegexFields?: string[];

  /** Regex flags for regex-based search */
  regexFlags?: string;

  /** Read-only fields to filter out during create and update */
  readOnlyFields?: string[];

  /** Function to transform inputs received in create and update */
  inputTransformer?: (input: Partial<T>) => Promise<Partial<T>>;

  /** Additional queries for list, e.g. deleted/hidden flag. */
  listQuery?: Record<string, any>;

  /** Max rows from a get operation to prevent accidental server suicide (default 100) */
  maxRows?: number;

  /** Extra selects for mongoose queries (in the case that certain fields are hidden by default) */
  extraSelects?: string;

  /** Disable or enable certain parts. */
  capabilities?: raExpressMongooseCapabilities;

  /** Specify a custom express.js router */
  router?: Router;

  /** Should all queries use lean? (default = true) */
  useLean?: boolean;

  /** Specify an ACL middleware to check against permissions */
  ACLMiddleware?: (name: string) => RequestHandler;
}

Query Operators

MongoDB Query Operators can be used by appending them as a suffix to the field name (see here).

Supported Operators

| MongoDB Query Operator | Field Suffix | Description | | ---------------------- | ------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | $eq | _eq | Matches values that are equal to a specified value. (Useful for matching exact values if a field is included in allowedRegexFields) Example: /user?name_eq=Alex | | $gt | _gt | Matches values that are greater than a specified value. Example: /user?createdAt_gt=2022-10-25T00%3A00%3A00.000Z | | $gte | _gte | Matches values that are greater than or equal to a specified value. Example: /user?createdAt_gte=2022-10-25T00%3A00%3A00.000Z | | $in | _in | Matches any of the values specified in an array. Example: /user?name_in=Alex&name_in=Peter | | $lt | _lt | Matches values that are less than a specified value. Example: /user?createdAt_lt=2022-10-25T00%3A00%3A00.000Z | | $lte | _lte | Matches values that are less than or equal to a specified value. Example: /user?createdAt_lte=2022-10-25T00%3A00%3A00.000Z | | $ne | _ne | Matches all values that are not equal to a specified value. Example: /user?name_ne=Alex | | $nin | _nin | Matches none of the values specified in an array. Example: /user?name_nin=Alex&name_nin=Peter |