Installation
! Tungsten is not public yet - the commands below will not give you a running app yet
Create a new app with the starter package
With pnpm (Recommended):
pnpm create tungsten-app <location>
With yarn:
yarn create tungsten-app <location>
With npm:
npx create-tungsten-app <location>
For example, to create a new app in the current folder with pnpm
pnpm create tungsten-app .
Or to create an app in the folder 'my-app', relative to the current directory, with pnpm
pnpm create tungsten-app my-app
You will be asked to choose either JavaScript or TypeScript. Then just install the packages with pnpm/yarn/npm and start exploring!
To start the site in dev mode simply run the 'dev' commandpnpm dev
yarn dev
npm run dev