n5-wasm 0.1.0

Rust-WASM bindings to the N5 tensor file system format
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');

module.exports = {
  entry: "./index.js",
  output: {
    path: path.resolve(__dirname, "dist"),
    filename: "index.js",
  },
  plugins: [
    new HtmlWebpackPlugin({
      title: "Getting started with WASM"
    })
  ],
  mode: "development"
};