From f82a88ccd9c152321298ff9de567af268d220bc1 Mon Sep 17 00:00:00 2001 From: Alberto Soto Fernandez Date: Wed, 9 Aug 2023 18:37:21 +0200 Subject: [PATCH] update readme --- dev-notes.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 dev-notes.md diff --git a/dev-notes.md b/dev-notes.md new file mode 100644 index 0000000..fd5c192 --- /dev/null +++ b/dev-notes.md @@ -0,0 +1,32 @@ +## Plugin development with Rollup +https://javascript.plainenglish.io/tutorial-create-your-own-component-library-with-react-and-rollup-b8978d885297 + +## Plugin development with Vite +https://tomsouthall.com/blog/publishing-react-component-using-vite +https://medium.com/@ftaioli/using-node-js-builtin-modules-with-vite-6194737c2cd2 + + +## Plugin development +https://thicolares.com/2019/02/24/creating-a-react-package-and-publishing-it-on-npm-explained.html +https://itnext.io/how-to-package-your-react-component-for-distribution-via-npm-d32d4bf71b4f +https://medium.com/@mohandere/npm-packaging-for-local-development-1d79c38b1897 + +## mediapipe blazepose +https://blog.tensorflow.org/2021/05/high-fidelity-pose-tracking-with-mediapipe-blazepose-and-tfjs.html + +## React router +https://reactrouter.com/en/main/start/tutorial + +## Mediapipe +https://developers.google.com/mediapipe/solutions/examples +https://codepen.io/mediapipe-preview/pen/abRLMxN + +## how to publish + +Try using this straigh forward guide https://onlyoneaman.medium.com/creating-an-npm-package-from-react-component-ee5b0ba0cd49 + +```bash +npm login +npm version +npm publish +```