Launch Week Day 2: Introducing Reports: An Extensible Reporting Framework for Socket Data.Learn More
Socket
Book a DemoSign in
Socket

hodor-loader

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hodor-loader

A webpack loader for hodorifying JavaScript code

latest
Source
npmnpm
Version
5.0.0
Version published
Weekly downloads
12
71.43%
Maintainers
1
Weekly downloads
 
Created
Source

hodor-loader

 _| | |_  _                 _        _     _      _                  _
|_  .  _|| |_      ___     | |    __| |   | |_   | |_      ___    __| |    ___     ___      _ _
|_     _|| ' \    / _ \    | |   / _` |   |  _|  | ' \    / -_)  / _` |   / _ \   / _ \    | '_|
  |_|_|  |_||_|   \___/   _|_|_  \__,_|   _\__|  |_||_|   \___|  \__,_|   \___/   \___/   _|_|_
_|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""|
"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'

travis build codecov coverage version downloads WTFPL License

This webpack loader allows statically replacing string literal and literal template syntax in JavaScript source code with Hodor before it gets bundled and interpreted.

Smells like an experimental manipulative Lexer, huh?!

Heads-up: I simply do this for fun; use at your own risk.

Image of Hodor by Jack Spellman

Hold the door! Holddoor! Hodor! https://youtu.be/5DoBY8M_bCg

Why?

Installation

npm isntall hodor-loader --save-dev

Usage

Documentation: Using loaders

Example

Given this webpack config:

{
  // ...,
  module: {
    rules: [
      {
        test: /\.m?js$/,
        use: 'hodor-loader'
      }
    ]
  },
  // ...
}

It will transform the matching JS file source code, e.g.

console.log('hello, world');

document.querySelector('#app').textContent = 'the quick brown fox jumps over a lazy dog';

// alert("hold the door");

document.writeln('hold, the; door!');

const x = 42;
console.log(`the answer is ${x}`);

...into:

console.log('HODOR, HODOR');

document.querySelector('#HODOR').textContent =
  'HODOR HODOR HODOR HODOR HODOR HODOR HODOR HODOR HODOR';

// alert("hold the door");

document.writeln('HODOR, HODOR; HODOR!');

const x = 42;
console.log(`HODOR HODOR HODOR HODOR`);

Author

Glenn Dwiyatcita (@dwiyatci)

License

WTFPL – Do What the Fuck You Want to Public License.

See LICENSE.txt.

WTFPL

Keywords

hodor

FAQs

Package last updated on 05 Nov 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts