Skip to content

bitstillery/dotbuild

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dotbuild

Dotbuild is a simple opinionated async task-based frontend toolchain to build new efficient frontend applications with. It uses the following tools:

  • Esbuild - Efficient bundler for TS/TSX
  • Sass - For organized & structured stylesheets

Development

This project is still in its infancy. Do you want to try Dotbuild yourself? Use this workflow. The New project workflow is not finished yet.

git clone git@github.com:bitstillery/dotbuild.git
cd dotbuild
pnpm i
pnpm link --global
mkdir project;cd project
pnpm init; pnpm pkg set type="module"; 
pnpm link @bitstillery/dotbuild --global
dotbuild boilerplate
dotbuild dev
# Open localhost:3000

New project

SolidJS

This is a project starter for SolidJS:

pnpm i @bitstillery/dotbuild --global
dotbuild boilerplate --template solidjs project
dotbuild dev