-
|
Hey, I read the docs and examples but I am still not quite sure which parts of this project are client side and which are server side… I am hoping that this might all be client side with a model that is downloaded. Is that the case? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
|
Hi @tordans thanks for trying out. Yes that's correct it runs client side. However there's nothing stopping you using it server-side as there's no particular dependency on the DOM. Checkout the quick-start see below. For examples of without ReactJS checkout the tests they have examples that run via the CLI. Client Side:curl -L https://github.com/decision-labs/geoai.js/archive/refs/heads/main.zip -o repo.zip
unzip repo.zip "geoai.js-main/examples/01-quickstart/*"
mkdir -p examples
mv geoai.js-main/examples/01-quickstart examples/
rm -rf geoai.js-main repo.zip
cd examples/01-quickstart
pnpm i
pnpm start
PS. Feel free to ping me if there's something specific you are hoping to achieve we are keen to learn how people want to use the lib. https://cal.com/geobase |
Beta Was this translation helpful? Give feedback.

Hi @tordans thanks for trying out. Yes that's correct it runs client side. However there's nothing stopping you using it server-side as there's no particular dependency on the DOM. Checkout the quick-start see below. For examples of without ReactJS checkout the tests they have examples that run via the CLI.
Client Side:
PS. Feel free to ping me if there's something specific you are hoping to achieve we a…