@@ -61,8 +61,8 @@ performance, as the plugin-assisted bundle version of Perspective:
6161
6262Perspective comes with bundler plugins for:
6363
64- - Webpack via ` @finos/perspective-webpack-plugin `
6564- ` esbuild ` via ` @finos/perspective-esbuild-plugin `
65+ - Webpack via ` @finos/perspective-webpack-plugin `
6666
6767##### Webpack
6868
@@ -243,15 +243,16 @@ It exports Perspective's data interfaces:
243243
244244` @finos/perspective ` also exports process management functions, such as
245245` worker() ` and ` websocket() ` (in the browser) and ` WebSocketServer() ` (in
246- Node.js). See the [ API documentation] ( /obj/perspective.md ) for a complete
247- reference on all exported methods. This module is a dependency of
246+ Node.js). See the
247+ [ API documentation] ( < [/obj/perspective.md](https://docs.rs/perspective-js/latest/perspective_js/) > )
248+ for a complete reference on all exported methods. This module is a dependency of
248249` @finos/perspective-viewer ` , and is not needed if you only intend to use
249250` <perspective-viewer> ` to visualize simple data.
250251
251252### Importing in the browser
252253
253254` perspective ` can be imported as an ES6 module and/or ` require ` syntax if you're
254- using a bundler such as Webpack (and the ` @finos/perspective-webpack -plugin ` ):
255+ using a bundler such as ESBuild (and the ` @finos/perspective-esbuild -plugin ` ):
255256
256257``` javascript
257258import perspective from " @finos/perspective" ;
@@ -311,7 +312,7 @@ view.to_csv().then((csv) => console.log(csv));
311312view .to_arrow ().then ((arrow ) => console .log (arrow));
312313```
313314
314- Via ES6 ` await ` /` async `
315+ Via ` await ` /` async `
315316
316317``` javascript
317318async function print_data () {
0 commit comments