Socket
Socket
Sign inDemoInstall

hodor-loader

Package Overview
Dependencies
18
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    hodor-loader

A webpack loader for hodorifying JavaScript code


Version published
Weekly downloads
9
increased by800%
Maintainers
1
Install size
3.43 MB
Created
Weekly downloads
 

Readme

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

FAQs

Last updated on 05 Nov 2020

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc