An open API service indexing awesome lists of open source software.

https://github.com/stevesarmiento/solana-starter

An open-source solana starter using Next 15, Turbopack, Tanstack, Shadcn, Tailwind, Solana 2.0, Wallet Stadard, and Plausible
https://github.com/stevesarmiento/solana-starter

Last synced: about 2 months ago
JSON representation

An open-source solana starter using Next 15, Turbopack, Tanstack, Shadcn, Tailwind, Solana 2.0, Wallet Stadard, and Plausible

Awesome Lists containing this project

README

          


Solana Starter



Everything you need to start building a production ready Solana dApp. An open-source Solana starter using Next 15, Turbopack, Tanstack, Shadcn, Tailwind, Solana 2.0, Wallet Stadard, and Plausible.




What's included ·
Prerequisites ·
Getting Started ·

## What's included

[Next.js](https://nextjs.org/) - Framework

[TurboPack](https://turbo.build) - Bundler

[Tanstack Query](https://tanstack.com/query/latest) - API queries

[TailwindCSS](https://tailwindcss.com/) - Styling

[Shadcn](https://ui.shadcn.com/) - UI components

[Solana](https://github.com/solana-labs/solana-web3.js) - Web3 Framework

[Wallet Standard](https://github.com/wallet-standard/wallet-standard) - Wallet
connector Framework
[TypeScript](https://www.typescriptlang.org/) - Type
safety
[Plausible](https://plausible.io/sites) - Analytics

[Content-collections](https://content-collections.dev/) - Markdown framework for blog

[Next-themes](https://next-themes-example.vercel.app/) - Theme manager

## Prerequisites

Bun
Plausible (optional)

## Getting Started

Install bun if you don't have it

Mac

```bash
curl -fsSL https://bun.sh/install | bash
```

Windows

```bash
powershell -c "irm bun.sh/install.ps1 | iex"
```

Clone this repo locally with the following command:

```bash
bunx degit stevesarmiento/solana-starter my-solana-app
```

1. Install dependencies using bun:

```sh
bun i
```

2. Start the development server from either bun or turbo:

```ts
bun dev // starts everything in development mode
```