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

json-import-loader

v2.0.0

Published

Allows import files into a json file, contains webpack-loader and node API.

Downloads

857

Readme

json-import-loader

Allows import files into a json file. Works for any kind of import, as long it's converted to a JS object by webpack.

This module also contains a util function that works in plain node, in case you need to use the json or yaml file outside of webpack. Keep in mind that you can use full and relative imports.

Travis npm npm

Installation

yarn add -D json-import-loader

Usage

The json-import-loader can be inserted before (so at the end of the loader-chain) any other loader that returns json (or just any string for that matter).

It just converts a "import!<path>" string to the result of the imported file. The imported file will be required through webpack, so you can use any path or extension. If you import another json, it will be processed by the json-loader by default. Because of this, you can nest multiple imports.

Since all imports will be required through webpack, you can use any path shortcuts you want that works with the webpack resolve config (e.g. ignore extension, different base path).

Note: Webpack 4 introduced Module Types, where .json files are converted to pure json instead of javascript. This loader makes use of the 'require' feature of webpack, which doesn't work with raw jason. So if you're using webpack 4 or higher, please add type: "javascript/dynamic" to your loader config.

Please look at the /test/_fixtures folder for usage examples.

Note: When importing JS files, if you want to support the import! syntax there as well, you have to use this loader for those JS files as well. Do this in the webpack config, and make sure to only include specific paths, so it won't be active for all JS files.

Note: When used on an empty file, it will return an empty object.

Inline

const json = require('json-import-loader!json-loader!./file.json');

Configuration (recommended)

const json = require('./file.json');

webpack.config.js

module.exports = {
  module: {
    loaders: [
      {
        test: /\.json$/,
        type: 'javascript/dynamic', // only for webpack 4+
        use: [
          {
            loader: 'json-import-loader',
            options: {
              processPath: path => path,
            }
          },
          { loader: 'json-loader' }
        ],
      },
    ],
  },
};

Example

foo.json

{
  "foo": "import!foo/bar.json",
  "foos": ["import!foo/foo1.json", "import!foo/foo2.json"]
}

Yaml

When using the yaml-loader it's also supported in/with yaml files, you can mix and match different imports.

webpack.config.js

module.exports = {
  module: {
    rules: [
      {
        test: /\.js$/,
        // include: /regexp-pattern-for-just-data-files/,
        use: [
          {
            loader: 'json-import-loader',
            options: {
              processPath: path => path,
            }
          }
        ]
      },
      {
        test: /\.json$/,
        type: 'javascript/dynamic', // only for webpack 4+
        use: [{ loader: 'json-import-loader' }, { loader: 'json-loader' }],
      },
      {
        test: /\.yaml$/,
        type: 'javascript/dynamic', // only for webpack 4+
        use: [
          { loader: 'json-import-loader' },
          { loader: 'json-loader' },
          { loader: 'yaml-loader' },
        ],
      },
    ],
  },
};

foo.yaml

foo: import!foo/bar.yaml
foos:
  - import!foo/foo1.json
  - import!foo/foo2.yaml

Node API

If you want to use the json, js or yaml files outside of webpack, this function will resolve the imports for you.

import fs from 'fs';
import path from 'path';
import yaml from 'js-yaml';

const { loadData } = require('json-import-loader');

// by default, json and js are supported
const jsonObj = loadData(path.resolve(__dirname, './data/foo.json'));

// additional extensions can be supported by providing resolvers for extensions
const yamlObj = loadData(path.resolve(__dirname, './data/foo.yaml'), {
  resolvers: {
    yaml: path => yaml.safeLoad(fs.readFileSync(path, 'utf8')),
  },
  // the path can be changed in this hook, in case you want to use variables in there
  processPath: path => path,
});

import js

If you import a JS file, it should either export an object or a function. When a function, it will be called, and the result will be used.

resolver map

The resolver map expects the extension as the key, and a function as the value. The resolve function will receive the path (from the import) as parameter, and should return a string or object.

importing without extension

When no file extension is given in the import directive (e.g. "import!./foo"), it will try to resolve the file on disk with all the available extensions, starting with json and js, followed up by the extensions passed in the resolve map. This is mainly to mimic webpack resolve logic, so the same json files can be used with both the Webpack loader and the Node API.

Building

In order to build json-import-loader, ensure that you have Git and Node.js installed.

Clone a copy of the repo:

git clone https://github.com/mediamonks/json-import-loader.git

Change to the json-import-loader directory:

cd json-import-loader

Install dev dependencies:

yarn

Use one of the following main scripts:

yarn build            # build this project
yarn dev              # run compilers in watch mode, both for babel and typescript
yarn test             # run the unit tests incl coverage
yarn test:dev         # run the unit tests in watch mode
yarn lint             # run eslint and tslint on this project
yarn doc              # generate typedoc documentation

When installing this module, it adds a pre-commit hook, that runs lint and prettier commands before committing, so you can be sure that everything checks out.

Contribute

View CONTRIBUTING.md

Changelog

View CHANGELOG.md

Authors

View AUTHORS.md

LICENSE

MIT © ThaNarie