MyScript / iinkJS

:pencil2: :cloud: iinkJS is the fastest way to integrate rich handwriting recognition features in your webapp.

Home Page:https://developer.myscript.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

what i missing here?

johnfelipe opened this issue · comments

apt update
apt upgrade
shutdown -r now

apt install git python3-pip
sudo apt install curl
curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
sudo apt update && sudo apt install yarn


apt install npm
git clone https://github.com/MyScript/iinkJS.git
cd iinkJS
npm install
npm audit fix

npm run build
npm run dev

and logs show this

http://localhost:8080 -> /root/iinkJS
LiveReload enabled
(!) Circular dependencies
node_modules/d3-selection/src/selection/index.js -> node_modules/d3-selection/src/selection/select.js -> node_modules/d3-selection/src/selection/index.js
node_modules/d3-selection/src/selection/index.js -> node_modules/d3-selection/src/selection/selectAll.js -> node_modules/d3-selection/src/selection/index.js
node_modules/d3-selection/src/selection/index.js -> node_modules/d3-selection/src/selection/filter.js -> node_modules/d3-selection/src/selection/index.js
...and 9 more
created dist/iink.min.js in 6.2s
bundles src/iink.js → dist/iink.esm.js...
(!) Circular dependencies
node_modules/d3-selection/src/selection/index.js -> node_modules/d3-selection/src/selection/select.js -> node_modules/d3-selection/src/selection/index.js
node_modules/d3-selection/src/selection/index.js -> node_modules/d3-selection/src/selection/selectAll.js -> node_modules/d3-selection/src/selection/index.js
node_modules/d3-selection/src/selection/index.js -> node_modules/d3-selection/src/selection/filter.js -> node_modules/d3-selection/src/selection/index.js
...and 9 more
created dist/iink.esm.js in 5.1s

[2021-06-16 20:47:33] waiting for changes...

How can deploy in public ip?

i put this:

HOST=192.241.157.105 npm run dev

root@one-ubuntu-s-8vcpu-16gb-nyc1-01:~/iinkJS# HOST=192.241.157.105 npm run dev

> iink-js@1.4.5 dev /root/iinkJS
> npm-run-all minify-css dev:js


> iink-js@1.4.5 minify-css /root/iinkJS
> cleancss -o dist/iink.min.css src/*.css


> iink-js@1.4.5 dev:js /root/iinkJS
> rollup -c config/rollup.config.dev.js -w --sourcemap
rollup v2.18.0
bundles src/iink.js → dist/iink.min.js...
http://localhost:8080 -> /root/iinkJS
LiveReload enabled
(!) Circular dependencies
node_modules/d3-selection/src/selection/index.js -> node_modules/d3-selection/src/selection/select.js -> node_modules/d3-selection/src/selection/index.js
node_modules/d3-selection/src/selection/index.js -> node_modules/d3-selection/src/selection/selectAll.js -> node_modules/d3-selection/src/selection/index.js
node_modules/d3-selection/src/selection/index.js -> node_modules/d3-selection/src/selection/filter.js -> node_modules/d3-selection/src/selection/index.js
...and 9 more
created dist/iink.min.js in 6.5s
bundles src/iink.js → dist/iink.esm.js...
(!) Circular dependencies
node_modules/d3-selection/src/selection/index.js -> node_modules/d3-selection/src/selection/select.js -> node_modules/d3-selection/src/selection/index.js
node_modules/d3-selection/src/selection/index.js -> node_modules/d3-selection/src/selection/selectAll.js -> node_modules/d3-selection/src/selection/index.js
node_modules/d3-selection/src/selection/index.js -> node_modules/d3-selection/src/selection/filter.js -> node_modules/d3-selection/src/selection/index.js
...and 9 more
created dist/iink.esm.js in 5.2s

[2021-06-16 20:52:30] waiting for changes...

still not changes

Hello,

What are you trying to achieve ? Serve examples on a specific address ?

You are running in dev mode, by defaut our configuration is only localhost : https://github.com/MyScript/iinkJS/blob/master/config/rollup.config.dev.js#L10 (If you are not familiar with rollup, please check how it works.)

If you want dev mode to be available on specific ip address, you should change the configuration of localhost to <your-ip> in rollup.config.dev.js.

BUT

The best is to use our npm package iink-js in your own project, by creating an html file that you will serve from a simple http serve. You can get more information here : https://developer.myscript.com/docs/interactive-ink/1.4/web/iinkjs/get-started/

Hello,

Did you solve your problem?