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

parcel-namer-functional

v0.1.3

Published

A Parcel namer plugin with a functional way to give name to generated files.

Downloads

972

Readme

Parcel Namer Functional

A Parcel namer plugin with a functional way to give name to generated files. No crazy regex to type into a package.json, name things with full JS power.

Why ?

Sometimes renaming files with regex only is not handy. Also some projects may need very specific naming functions and having to push a package to npm only for a specific project is cumbersome.

Installation

npm i --save-dev parcel-namer-functional

Usage

Add renamer to .parcelrc. You can optionally add "..." after renamer to allow Parcel's default namer to name files if functional namer to rename.

{
    "extends": "@parcel/config-default",
    "namers": [ "parcel-namer-functional", "..." ]
}

Functional renamer API

Here is the API of a functional renamer.

function rename ( filePath, fileName, bundle, bundleGraph, config, options ) {
    // filePath is output bundle default filepath
    //      ex : /root/.../dist/my-file.js
    // fileName is default fileName, or previous function transformed fileName
    //      ex : my-file.5c13ab.css
    // bundle -> @see Parcel's Bundle object
    // bundleGraph -> @see Parcel's BundleGraph object
    // config -> @see Parcel's config object
    // options -> @see Parcel's options object
    
    // Return a new name
    if ( bundle.type == 'jpg' )
        return path.join('images', fileName) // -> 'images/my-image.b536c2.jpg
    else if ( bundle.type == 'mp3' )
        return path.join('audio', path.basename(filePath)) // -> audio/interview.mp3
    else
        return null // -> Will use next parcel namer from .parcelrc
}

You can find help about how to rename here :

Rename with functions from modules

package.json :

{
  "name" : "your-parcel-app",
  //[...]
  "parcel-namer-functional" : [
    {
      "type" : "require",
      "file" : "renamer.js", // relative to package.json
      "function" : "pleaseRename"
    }
  ]
}

renamer.js :

const path = require('path')
module.exports = {
	pleaseRename : function ( filePath, ... ) { ... }
}

If "function" parameter is omitted, module.exports will be used as renamer function.

If "function" targets to an array, every functions will be called in chain.

Rename with a function in global scope

If you use Parcel bundler API rather than CLI, you can use a global rename function. To register a global renamer, in your code before calling new Parcel :

// Register rename as global
global.__globalRename = function ( filePath, ... ) { ... }

And in package.json :

{
  "name" : "your-parcel-app",
  //[...]
  "parcel-namer-functional" : [
    {
      "type" : "global",
      "function" : "__globalRename"
    }
  ]
}

In this example __globalRename can be an array of renamer functions.

Fail

To fail silently, add this property to "require" or "global" in package.json

{
  "name" : "your-parcel-app",
  //[...]
  "parcel-namer-functional" : [
    {
      "type" : "global",
      "function" : "thisFunctionDoesNotExists",
      "fail" : false
    },
    {
      "type" : "require",
      "file" : "thisFileDoesNotExists.js",
      "function" : "thisFunctionDoesNotExists",
      "fail" : false
    }
  ]
}

Examples

Here are some examples of functional renamers :

parcel-rename.js :

const assetExtensions = {
  // https://developer.mozilla.org/fr/docs/orphaned/Web/HTML/Preloading_content
  audio: ['wav', 'mp3', 'ogg', 'aac', 'flac'],
  document: ['html', 'htm'],
  font: ['woff', 'woff2', 'ttf', 'otf', 'eot'],
  image: ['jpg', 'jpeg', 'gif', 'png', 'apng', 'svg', 'avif', 'webp', 'ico', 'bmp'],
  script: ['js'],
  style: ['css'],
  video: ['mp4', 'webm', 'flv', 'avi', 'mov', 'mkv', 'ogv'],
}

/**
 * All assets, but html documents, will be in put inside directory parameter.
 */
function createAllAssetsInDirectoryRenamer ( directory = 'assets' ) {
  return function allAssetsInDirectoryRenamer ( filePath, fileName, bundle, bundleGraph, appOptions ) {
    let name = ''
    Object.keys( SolidNamerPlugin.assetExtensions ).map( assetType => {
      if ( assetType == 'document' ) return;
      if ( SolidNamerPlugin.assetExtensions[assetType].includes( bundle.type ) )
        name = directory
    })
    return path.join(name, fileName);
  }
}

/**
 * All assets are put inside their type directory.
 * Ex : audio/track.mp3, video/help.mp4, images/flower.jpg ...
 */
function createAssetsByTypeRenamer () {
  return function assetsInDirectoryByTypeRenamer ( filePath, fileName, bundle, bundleGraph, appOptions ) {
    let name = ''
    Object.keys( SolidNamerPlugin.assetExtensions ).map( assetType => {
      if ( assetType == 'document' ) return;
      if ( SolidNamerPlugin.assetExtensions[assetType].includes( bundle.type ) )
        name += assetType + 's'
    })
    return path.join(name, fileName);
  }
}

module.exports = {
	allAssetsInStaticDirectory: createAllAssetsInDirectoryRenamer('static'),
    assetsByType: createAssetsByTypeRenamer(),
}

package.json :

{
  "parcel-namer-functional": [
    {
      "type": "require",
      "file": "parcel-rename.js",
      "function": "allAssetsInStaticDirectory"
    }
  ]
}