New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

klap

Package Overview
Dependencies
Maintainers
1
Versions
110
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

klap

zero config, zero dependency bundler for tiny javascript packages.

latest
Source
npmnpm
Version
7.0.11
Version published
Maintainers
1
Created
Source

klap :clap:

a zero config, zero dependency bundler for tiny javascript packages.

Build Status David David npm NPM All Contributors

klap output

:sparkles: Features

  • :tada: zero config: bundle your library using only a package.json
  • :boom: zero config: typescript support (just rename *.js to *.ts)
  • :star2: zero config: code transforms using babel macros
  • :rainbow: zero config: code generation using babel plugin codegen
  • :rocket: zero dependency: uses gcc-style bundling.
  • :octopus: creates tiny bundles for multiple output formats cjs, esm and umd
  • :fire: Modern JS syntax with class properties, async/await, and generators
  • :zap: Built in Minification and Gzip Size Tracking
  • :cyclone: Built in development server for quick prototyping.
  • :confetti_ball: Supports react, styled-components and emotion out of the box.

:muscle: Powered By

  • rollup - Next-generation ES module bundler
  • babel - The compiler for next generation JavaScript
  • typescript - Typed JavaScript at Any Scale.

:plate_with_cutlery: Usage

First, initialize your project using klap init:

npx klap init

Prefer Typescript ? initialize using ts argument:

npx klap init ts

Want to use JSX with Typescript? init using tsx argument:

npx klap init tsx

The init command will create a minimal package.json with source, main, module and browser entries and the build, watch and start scripts.

{
  "name": "...",
  "version": "0.0.0",
  "files": [ "dist" ],
  "source": "src/sum.js",         # source file of your package
  "main": "dist/sum.cjs.js",      # commonjs bundle target
  "module": "dist/sum.esm.js",    # esm bundle target
  "browser": "dist/sum.js",       # umd bundle target
  "scripts": {
    "build": "klap build",        # bundle your package
    "watch": "klap watch",        # bundle your package and watch for changes
    "start": "klap start",        # start a development server
  },
  "devDependencies": {
    "klap": "3.2.0"               # klap as dev dependency
  }
}

Note: Dropping pkg.main will disable cjs output, also applies to esm and umd outputs.

Then use npm run or yarn to invoke npm scripts as you normally would.

See examples for common use cases using klap.

:anger: Granular Control

klap uses sensible defaults for most part. However, as needed, use below properties in package.json to fine tune klap. You can also use cli flags to control config options for klap.

optioncli flag(s)descriptiondefault
source-s --sourcesource file to compile and bundlesrc/index.js
cjs-c --cjsthe output file for common js formatpkg.main
esm-e --esmthe output file for esm formatpkg.module
umd-u --umdthe output file for umd formatpkg.browser
types-t --typesthe output file for type definitionspkg.types
browserslist-b --browserslistbrowserslist compatible compilation targetlast 2 versions modern browsers if usage is greater than 1%
klap.name-n --namepackage name for umd bundlessanitized pkg.name
klap.port-p --portport for development server1234
klap.example--examplelocation of index js/ts file for start commandpublic/index.js or pkg.source
klap.fallback--fallbacklocation of index html file for start commandpublic/index.html
klap.target--targettarget for development server (umd, es)es
klap.sourcemap--no-sourcemapsourcemaps for buildstrue
klap.minify--no-minifyminification for buildstrue
klap.runtime--runtimethe runtime for new JSX transformreact
klap.pragma--pragmathe JSX Pragma for classic runtimereact
klap.pragmaFrag--pragmaFragJSX Fragment pragmareact
klap.usets--usetsuse typescript compiler for the projectfalse
klap.globalsglobal names for umd bundles{}

--usets allows the library code to use typescript features not supported by @babel/preset-typescript. See const-enums example to enable usage of const enums.

:clinking_glasses: License

klap is licensed under the MIT License.

Documentation is licensed under Creative Common License.

Created with ❤️ by @osdevisnot and all contributors.

:sparkles: Contributors

Thanks goes to these wonderful people (emoji key):


v 1 r t l

💻

Daniel Berner

💻

Tom Julius

💻

Marcus Lindblom

💻

This project follows the all-contributors specification. Contributions of any kind welcome!

:gift_heart: Supporters

FAQs

Package last updated on 11 Jun 2022

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