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

https://github.com/denimar/using-claude-code-subscription


https://github.com/denimar/using-claude-code-subscription

Last synced: 4 months ago
JSON representation

Awesome Lists containing this project

README

          

# Stacktalk

A conversational webapp builder where AI agents turn your ideas into fully functional applications — through natural dialogue, structured task management, and real-time collaboration.

Built with Next.js 16, React 19, and TypeScript.

## Tech Stack

- **Framework:** [Next.js 16](https://nextjs.org) (App Router)
- **UI:** [React 19](https://react.dev)
- **Language:** [TypeScript 5](https://www.typescriptlang.org)
- **Styling:** [Tailwind CSS 4](https://tailwindcss.com)
- **Linting:** [ESLint 9](https://eslint.org)

## Getting Started

### Prerequisites

- Node.js 18+
- npm

### Installation

```bash
npm install
```

### Development

```bash
npm run dev
```

Open [http://localhost:3000](http://localhost:3000) in your browser.

### Build

```bash
npm run build
npm run start
```

### Lint

```bash
npm run lint
```

## Project Structure

```
src/
└── app/ # App Router pages and layouts
├── layout.tsx # Root layout
├── page.tsx # Home page
└── globals.css # Global styles and Tailwind config
public/ # Static assets
```