Create SolidJS libraries with ease!
npx create-solid-library <name>
Developing components is often a visual process. As a result, vite is being used as a build tool and as a dev environment!
Just run npm run dev
and you can live code your component.
At build time, Vite unfortunately cannot exclude dependencies automatically. Dependencies you install need to be externalized so that it doesn't appear in the final bundle!
Oftentimes, there can be issues that only appear after build time. As a result, we added a test-project
folder where you can use your Solid component and test if it
actually works in a real project!
npm run build