Drop-in to your new app. Get started in no time, your framework should do more for you.
This is a WIP. In the near future, the primary template will be local first via Zero. The most usable and available template is the
npx @drop-in/new your-app-name
|| pnpx @drop-in/new your-app-name
cd ./your-app-name
pnpm install
|| npm install
npm run typegen
|| pnpm typegen
must have all env credentials set to work$lib: 'src/lib';
$routes: 'src/routes';
$state: 'src/state';
$types: 'src/types';
$utils: 'src/utilities';
Usage: npm run make-package
Follow the wizard to create a new package. This will add a new package starter to the local packages folder /src/packages. This will also add "@org-name/your-package-name": "workspace:^", to your package.json file
Usage: npm run types
Generate types for pocketbase to be used throughout project. Requires all env vars to be correctly set.
The base template has two main route paths. SSR based with no auth or app code with auth. While you could have authenticated user data there are enough major differences in approach (ie not using server actions, cookie for auth token, .server.ts files, ect..) that having both in this codebase felt like it would make it too complex. Might make a 2nd template with full SSR.
It's pretty trivial to add those yourself and I wanted to keep this as bare as possible style wise. Many projects have their own CSS needs and I want to respect that. I'd like to add a cli with alternate builds of this with more baked in UI if anyone is interested in helping.