java-to-js

Easy way to wrap java object to js object, the reverse of https://github.com/node-modules/js-to-java

Usage no npm install needed!

<script type="module">
  import javaToJs from 'https://cdn.skypack.dev/java-to-js';
</script>

README

java-to-js

NPM version build status Test coverage npm download

Easy way to wrap java object to js object, the reverse of js-to-java

In hessian.js, when read with type we get java classname with js object, so convert it to plain js object so we can use it normally.

Install

NPM

$ npm install java-to-js

Usage

const java2js = require('java-to-js');

let java = {
  $class: 'xxxx',
  $: {
    foo: 'bar',
    bar: {
      $class: 'int',
      $: 3,
    },
  },
};
java2js(java);
// => {foo: 'bar', bar: 3}

License

MIT