A LuciadRIA distribution comes as a set of ES6 modules, packaged as npm packages.
Developers can install it using npm install
.
Because LuciadRIA isn’t published in a public npm registry, you must publish it to a private npm registry first to make it available:
cd packages # The NPM packages are located under packages/ # Publish each of the packages. # geometry and symbology are optional packages that are only available when purchased npm --registry http://my-private-registry:8073/ publish ria/ npm --registry http://my-private-registry:8073/ publish geometry/ npm --registry http://my-private-registry:8073/ publish symbology/
If you don’t have an npm registry available, you can:
|