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 🙏

© 2026 – Pkg Stats / Ryan Hefner

karma-jawr

v0.1.15

Published

karma jawr framework integration

Downloads

51

Readme

Karma JAWR

npm Build Status Circle CI Status Coverage Status

Karma + JAWR Integration.

Concert & Situations

When you are using J2EE for your web application and using server-render template engine (JSP,JSF,Freemarker,Velocity), you might using some web resource bundling solution.

JAWR used to be a JavaEE official web resource packing solution in Java way.

But how can we setup a universal unittest way for JAWR style loading resource way?

If you are noticed karma is popular with managing frontend javascript side and easily integrated with reporters and CI.

Here is a karma-plugin to help you generate some commonjs style temp file by parsing jawr.properties. So that you can use webpack or other preprocessor for writing frontend unittest in a graceful way.

JAWR Options

  • configLocation: Absolute path, point to jawr.properties or spring-jawr-context.xml
  • webappLocation: Absolute path, point to your maven war project webapp folder
  • targetLocation: Absolute path, point to a temp build folder, for require syntax
  • localeConfigLocation: Absolute path, optional, if using jawr message generator and using messages: syntax in jawr properties file, suppose to pre-generate by resources bundle and add as global serving files in the karma config.files.

Usage

Installation

$ yarn add -D karma-jawr

Karma Configuration

  1. Add karma-jawr as loaded plugin and framework
plugins:[
  ....,
  'karma-jawr'
],
frameworks: [
  ...,
  'jawr'
],
  1. Add jawr for karma-jawr options to spec the location for your jawr.properties, webapp folder for building war, template generate folder for you customize gitignore path. using mandatory fields configLocation,webappLocation,targetLocation.

the value must be absolute path.

jawr: {
  configLocation: pathUtil.resolve('src/main/resources/jawr/') + 'jawr.properties',
  webappLocation: pathUtil.resolve('src/main/webapp'),
  targetLocation: pathUtil.resolve('src/test/js/build')
}

If you are using jawr provided locale generator for frontend locale string You can also add localeConfigLocation for locating your locale bundle resources.

Sample Project

You can refer to this sample project. It using last generation J2EE way web application.

Using SpringMVC + JSF + JAWR + ExtJs for building a deployable war file.

And Integrated with travis.ci and coveralls.io for CI.

Karma-JAWR-Sample

Document And Design

Please refer to wiki

Change Log

0.1.14

  • Fix Issue#2 fix issue#2: mapping patterns not support /path/to/ to match non-recurring path to a directory and every resource under it will be added to the bundle

0.1.13

  • Update Dependencies version, and README content at npm

0.1.12

  • Fix defect when locale properties contains empty value while properties default parsed to null

0.1.11

  • Update .last-mappings.json path display, normalizing.

0.1.10

  • Update log level from info to debug.
  • Fix defect when combine bundle jawr bundle names.

0.1.9

  • Fix when mappings in jawr properties including jawr bundle, can not generate correct index.js

0.1.8

  • Performance Tuning: Suppose not generate twice index files when all flatten mapping files no change since last time

0.1.7

  • New features: Add css bundle support, for better requiring style file for debug in browser.
  • Change log level to debug when generating flatten mapping files for ignoring more files.
  • Mini refactor JawrContext design.

0.1.6

  • Fix non-primitive value in locale message properties can not be parse defects.

0.1.5

  • Fix non-composite child key calculate not including itself defects.

0.1.4

  • Fix locale generator generate function key-value duplicate error.
  • Fix locale message mapping detect and filter function.