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

flagtail-jam

v0.3.4

Published

register custom module paths using jsconfig/tsconfig/package JSON file in NodeJS

Downloads

7

Readme

flagtail-jam

# JAM (JSON Aliases Mapper)

Register custom module paths using JSON configuration file in NodeJS

support: jsconfig.json, tsconfig.json, package.json

# Why Set Module Aliases Using jsconfig.json Or tsconfig.json

You can enjoy IDE's intelligence, code automatic completion, code location movement, and more.

# Why Need flagtail-jam

- "god no plz... save us..."

require('../../../../some/very/deep/module');

what if you change this code file location?

require('../../../../../../some/very/deep/module');

calculate it carefully... ok?

- "thx god!"

require('@/some/very/deep/module');

what if you change this code file location?

require('@/some/very/deep/module');

cool~!

# Usage

- Installation

npm i --save flagtail-jam

- JavaScript Configuration

& jsconfig.json
{
  "compilerOptions": {
    "baseUrl": "./jslib",
    "paths": {
      "@/crypto/*": [
        "crypto/*"
      ],
      "@/utils": [
        "utils/*"
      ]
    }
  },
  "exclude": [
    "dist",
    "node_modules",
    "build",
    ".vscode",
    "coverage",
    ".npm",
    ".yarn"
  ]
}
& index.js
const jam = require("flagtail-jam");

jam.load(); // default mode

// OR

jam.load({ 
  rootPath: process.cwd(), 
  configType: jam.ConfigType.JSCONFIG
}) // same with `jam.load()`

/**
 * ConfigType
 *  - JSCONFIG = set aliases from jsconfig.json (recommended in JavaScript)
 *  - TSCONFIG = set aliases from tsconfig.json (recommended in TypeScript)
 *  - PACKAGE  = set aliases from package.json  (to support migration)
 */  

// your code start: EXAMPLE
const encrypt = require("@/crypto/encrypt");
const decrypt = require("@/crypto/decrypt");
const math = require("@/utils/math");

- TypeScript Configuration

& Structure

├── src
│   ├── index.ts
│   └── jslib
│       ├── crypto
│       │   ├── decrypt.ts
│       │   └── encrypt.ts
│       └── utils
│           └── math.ts
└── tsconfig.json
& tsconfig.json
{
  "include": ["src/**/*.ts", "index.ts"],
  "compilerOptions": {
    "baseUrl": "./src/jslib",                                          // <---
    "paths": { "@/crypto/*": ["crypto/*"], "@/utils/*": ["utils/*"] }, // <---
    "target": "es5", 
    "module": "CommonJS",
    "rootDir": "./",
    "declaration": true,
    "outDir": "./build",
    "declarationDir": "./types",
  }
}
& index.ts
import * as jam from "flagtail-jam";

const conf:typeof jam.ConfigType = jam.ConfigType;

const result:jam.JamSettingResult = jam.load({
    configType: conf.TSCONFIG,
}) 

// your code start: EXAMPLE
console.log(result);

import {add} from "@/utils/math";

console.log(add(10, 20));

- Package Configuration

& package.json
{
  "_moduleAliases": {
    "@/crypto": "./jslib/crypto",
    "@/utils": "./jslib/utils"
  }
}
& index.js
const jam = require("flagtail-jam");

jam.load({ 
  configType: jam.ConfigType.PACKAGE,
})

// your code start: EXAMPLE
const encrypt = require("@/crypto/encrypt");
const decrypt = require("@/crypto/decrypt");
const math = require("@/utils/math");

- Options

* rootPath

you can give root path directly that has jsconfig.json, tsconfig.json or tsconfig.json.

jam.load({ 
  rootPath: process.cwd(), 
}) 

* configType (will be ignored when the aliasMap property is given)

  • JSCONFIG: set aliases from jsconfig.json (recommended in JavaScript)
  • TSCONFIG: set aliases from tsconfig.json (recommended in TypeScript)
  • PACKAGE : set aliases from package.json (to support migration)
jam.load({ 
  configType: jam.ConfigType.TSCONFIG
}) 

* aliasMap (aliasMap takes precedence over configType.)

const nodePath = require('path');

jam.load({ 
  aliasMap:{
      '@/crypto': nodePath.join('mock', 'crypto'),
      '@/utils': nodePath.join('mock', 'utils'),
  }
}) 

# Using Jest

Unfortunately, flagtail-jam itself would not work from Jest due to a custom behavior of Jest's require. But you can use it's own aliasing mechanism instead. The configuration can be defined either in package.json or jest.config.js:

- package.json

"jest": {
  "moduleNameMapper": {
    "@/(.*)": "<rootDir>/mock/$1",
  },
}

- jest.config.js

module.exports = {
  moduleNameMapper: {
    "@/(.*)": "<rootDir>/mock/$1",
  },
}

# Migration

- _moduleDirectories is not supported

& package.json
{
  "_moduleAliases": {
    "@/crypto": "./jslib/crypto",
    "@/utils": "./jslib/utils"
  },
  "_moduleDirectories": ["my_custom_node_module"] 
}

# License

License: MIT

# Copyright

ßflagtail-jam is released into public domain by the copyright holder.

This README file was originally wrttin by RHIE Min Hyung and is likewise released into the public domain.

THis project is maintained by RHIE Min Hyung.

# Reference

this package takes inspiration from module-alias & better-module-alias