Explore the live demonstration of the project: nextjs13-threads
Threads web application, a social media platform that allows users to share their thoughts, with their friends and family. Threads is a full-stack web application built with TypeScript using Next.js 13 with Server Side Rendering. It uses MongoDB as a database, and Clerk as an authentication provider. It also uses UploadThing to upload images to the cloud. The application is styled with Tailwind CSS and Shadcn components.
Folder Structure
nextjs13-threads/
βββ app/
β βββ favicon.ico
β βββ globals.css
β βββ (auth)/
β β βββ onboarding/
β β β βββ page.tsx
β β βββ sign-in/[[...sign-in]]/
β β β βββ page.tsx
β β βββ sign-up/[[...sign-up]]/
β β β βββ page.tsx
β β βββ layout.tsx
β βββ (root)/
β β βββ layout.tsx
β β βββ page.tsx
β β βββ activity/
β β β βββ page.tsx
β β βββ communities/
β β β βββ [id]/
β β β β βββ page.tsx
β β β βββ page.tsx
β β βββ create-thread/
β β β βββ page.tsx
β β βββ edit-thread/[id]/
β β β βββ page.tsx
β β βββ explore/
β β β βββ page.tsx
β β βββ profile/
β β β βββ [id]/
β β β β βββ page.tsx
β β β βββ edit/
β β β βββ page.tsx
β β βββ search/
β β β βββ page.tsx
β β βββ thread/
β β βββ [id]/
β β β βββ page.tsx
β β βββ reactions/[id]/
β β βββ page.tsx
β βββ api/
β βββ uploadthing/
β β βββ page.tsx
β βββ webhook/clerk/
β βββ route.tsx
βββ components/
β βββ atoms/
β β βββ CommunityCard.tsx
β β βββ ThreadCard.tsx
β β βββ UserCard.tsx
β βββ cards/
β β βββ EditThread.tsx
β β βββ FollowUser.tsx
β β βββ ReactThread.tsx
β βββ forms/
β β βββ AccountProfile.tsx
β β βββ Comment.tsx
β β βββ DeleteThread.tsx
β β βββ PostThread.tsx
β βββ shared/
β β βββ Bottombar.tsx
β β βββ Topbar.tsx
β β βββ LeftSidebar.tsx
β β βββ RightSidebar.tsx
β β βββ Pagination.tsx
β β βββ Searchbar.tsx
β β βββ ProfileHeader.tsx
β β βββ ThreadsTab.tsx
β βββ ui/ (generated by shadcn/ui)
β βββ button.tsx
β βββ form.tsx
β βββ input.tsx
β βββ label.tsx
β βββ tabs.tsx
β βββ textarea.tsx
βββ constants/
β βββ index.js
βββ lib/
β βββ mongoose.ts
β βββ uploadthing.ts
β βββ utils.ts
β βββ actions/
β β βββ community.actions.ts
β β βββ thread.actions.ts
β β βββ user.actions.ts
β βββ models/
β β βββ community.model.ts
β β βββ thread.model.ts
β β βββ user.model.ts
β βββ validations/
β βββ thread.ts
β βββ user.ts
βββ public/
β βββ next.svg
β βββ vercel.svg
β βββ assets/
β βββ [[...]].svg
βββ components.json
βββ middleware.ts
βββ next.config.ts
βββ package.json
βββ postcss.config.js
βββ tailwind.config.js
βββ tailwind.config.js (meaningless)
βββ tsconfig.ts
Dive into each folder and see what they contain
(auth)/
- (root)/
- (api)/
In the app directory, nested folders are normally mapped to URL paths. However, you can mark a folder as a Route Group to prevent the folder from being included in the route's URL path.
This allows you to organize your route segments and project files into logical groups without affecting the URL path structure.
For example,
atoms/
- cards/
- forms/
- shared/
- ui/
The components directory contains all the components used in the application. The components are grouped into atoms, cards, forms, shared and ui.
the ui
folder generated by shadcn/ui
package and contains all the required shadcn components that used in the application.
index.js
This is a JavaScript code contains all the constants used in the application, specifically the Sidebar Navigation (sidebarLinks
), Profile Tabs (profileTabs
) and Community Tabs (communityTabs
) constants.
actions/
- models/
- validations/
- mongoose.ts
- uploadthing.ts
- utils.ts
The lib folder holds crucial components for Threads App:
- actions: Manage actions for Community, Thread, and User entities using Mongoose for database interaction.
- models: Define mongoose schemas for Community, Thread, and User entities.
- validations: Provide validation schemas with Zod for Thread and User data.
- mongoose.ts: Establishes and manages MongoDB connections for the application.
- uploadthing.ts: Offers a React utility for simplified file uploads to UploadThing.
- utils.ts: Contains various reusable utility functions.
assets/
- next.svg
- vercel.svg
The public directory contains the media used in the application. The assets folder contains all the images used in the application.
Table of Contents
Threads is built using the following technologies:
- TypeScript: TypeScript is a typed superset of JavaScript that compiles to plain JavaScript.
- Next.js: Next.js is a React framework for building server-side rendered and statically generated web applications.
- Tailwind CSS: Tailwind CSS is a utility-first CSS framework for rapidly building custom user interfaces.
- Shadcn: Shadcn is a collection of Tailwind CSS components.
- Clerk: Clerk is a developer-first authentication API that handles all the logic for user sign up, sign in, and more.
- UploadThing: UploadThing is a simple, fast, and reliable file uploader for your website.
- MongoDB: MongoDB is a general purpose, document-based, distributed database built for modern application developers and for the cloud era.
- Mongoose: Mongoose is a MongoDB object modeling tool designed to work in an asynchronous environment.
- Zod: Zod is a TypeScript-first schema declaration and validation library.
- svix: Svix is a webhook proxy that allows you to receive webhooks locally.
- Vercel: Vercel is a cloud platform for frontend developers, providing the frameworks, workflows, and infrastructure to build a faster, more personalized Web.
To get this project up and running in your development environment, follow these step-by-step instructions.
In order to install and run this project locally, you would need to have the following installed on your local machine.
Step 0:
Note CLERK_PUBLISHABLE_KEY
and CLERK_SECRET_KEY
environment variables in .env
file. Also, the different URLs for the Clerk sign-in, sign-up, after sign-in and after sign-up pages.
Note MONGODB_URL
environment variable in .env
file located in server
folder.
Note UPLOADTHING_SECRET
and UPLOADTHING_APP_ID
environment variables in .env
file.
After following all the instructions above, we'll want to create a new webhook on Clerk. To do this, go to the Clerk Dashboard, click on the "Webhooks" tab, and then click "Add Endpoint". For the Endpoint URL, enter http://<PASTE-YOUR-LINK-HERE>/api/webhook/clerk
. For the evetnts, select the "organization", "organizationDomain", "organizationInvitation" and "organizationMembership". Then click "Create" to create the webhook. get the signing secret and set it as CLERK_WEBHOOK_SECRET
environment variable in .env
file.
Step 1:
Download or clone this repo by using the link below:
git clone https://github.com/ladunjexa/nextjs13-threads.git
Step 2:
Execute the following command in the root directory of the downloaded repo in order to install dependencies:
npm install
Step 3:
Execute the following command in order to run the development server locally:
npm run dev
Step 4:
Open http://localhost:3000 with your browser to see the result.
All scripts are defined in the package.json
file. Here is a list of all scripts:
Script | Action |
---|---|
npm install |
Installs dependencies |
npm run dev |
Starts local dev server at localhost:3000 |
npm run build |
Build your production site to ./dist/ |
npm run start |
Start your production site locally |
npm run lint |
Run ESLint |
Environment variables[^10] can be used for configuration. They must be set before running the app.
Environment variables are variables that are set in the operating system or shell, typically used to configure programs.
Threads uses Clerk, UploadThing, and MongoDB as external services. You need to create an account on each of these services and get the required credentials to run the app.
Create a .env
file in the root directory of the project and add the following environment variables:
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=<CLERK_PUBLISHABLE_KEY>
CLERK_SECRET_KEY=<CLERK_SECRET_KEY>
NEXT_CLERK_WEBHOOK_SECRET=<CLERK_WEBHOOK_SECRET>
NEXT_PUBLIC_CLERK_SIGN_IN_URL=/sign-in
NEXT_PUBLIC_CLERK_SIGN_UP_URL=/sign-up
NEXT_PUBLIC_CLERK_AFTER_SIGN_IN_URL=/onboarding
NEXT_PUBLIC_CLERK_AFTER_SIGN_UP_URL=/
MONGODB_URL=<MONGODB_URL>
UPLOADTHING_SECRET=<UPLOADTHING_SECRET>
UPLOADTHING_APP_ID=<UPLOADTHING_APP_ID>
You can create an optimized production build with the following command:
npm run build
The easiest way to deploy this Next.js app is to use the Vercel Platform.
You can also deploy this Next.js app with Netlify.
Check out Next.js deployment documentation for more details.
Threads web application comes with the following features:
- CRUD Threads, Communities and Profiles
- Like Threads
- Multi-level Comment Threads
- Follow Profiles
- Search Profiles and Communities
- Activity Feed (Likes, Comments, Follows)
- Explore Feed (Threads of Followed Profiles)
- Profile Tabs (Threads, Followers, Following)
- Community Tabs (Threads, Members, Requests)
- Suggested Communities and Profiles
- Thread Likes Page (Profiles that liked a Thread)
and much more...
In terms of technical features, Threads web application comes with the following features:
- TypeScripted Codebase with Next.js
- Authentication with Clerk
- User Management with Clerk
- Organization Management with Clerk
- File Upload with UploadThing
- Server Side Rendering with Next.js
- MongoDB Database
- Mongoose ODM
- Zod Validation
- Shadcn Components
- Tailwind CSS
- Svix Webhook Proxy
- Vercel Deployment
and much more..
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
To fix a bug or enhance an existing module, follow these steps:
- Fork the repo
- Create a new branch (
git checkout -b improve-feature
) - Make the appropriate changes in the files
- Commit your changes (
git commit -am 'Improve feature'
) - Push to the branch (
git push origin improve-feature
) - Create a Pull Request π
If you find a bug (failure of a module to execute its intended function), kindly open an issue here by including the issue with a title and clear description.
If you'd like to request a new function, feel free to do so by opening an issue here. Please include sample queries and their corresponding results.
I'd like to express my gratitude to the following people who helped me with this project and made it possible:
Adrian Hajdin. (2023). Build and Deploy a Full Stack MERN Next.js 13 Threads App | React, Next JS, TypeScript, MongoDB. YouTube.
Threads is open source software licensed as MIT and is free to use β See LICENSE for more details.