Socket
Book a DemoInstallSign in
Socket

@knot/browserify-plugin

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@knot/browserify-plugin

[![npm](https://img.shields.io/npm/v/@knot/browserify-plugin?style=flat-square)](http://npm.im/@knot/browserify-plugin) [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/pr

latest
Source
npmnpm
Version
1.2.0
Version published
Maintainers
1
Created
Source

@knot/browserify-plugin

npm code style: prettier lerna semantic-release Commitizen friendly standard-readme compliant

CircleCI

A browserify plugin to automatically handle parsing and transforming knot code.

Integrate knot into your existing browserify build easily using this plugin.

Table of Contents

Install

npm install @knot/browserify-plugin
# or
yarn add @knot/browserify-plugin

Usage

In order to use knot modules with browserify, add the plugin to your build command.

browserify main.kn -p [ @knot/browserify-plugin ] > bundle.js
# optionally print an exhaustive log of the operation of the compiler
browserify main.kn -p [ @knot/browserify-plugin --debug ] > bundle.js

Usage with programmatic API

// browserify.js
import browserify from 'browserify';
import knotify from '@knot/browserify-plugin';

browserify()
  // add the plugin to your exsiting configuration
  .plugin(knotify, {
    // optionally print an exhaustive log of the operation of the compiler
    // debug: true,
  });

You will now be able to import a .kn file from any normal javascript file. When running browserify, these files will be automatically converted into native javascript modules.

There is also a more robust example.

Maintainers

@effervescentia

Contributing

PRs accepted.

Small note: If editing the README, please conform to the standard-readme specification.

License

MIT © 2019 Ben Teichman

FAQs

Package last updated on 19 May 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