https://github.com/snipcart/next-snipcart-store
https://github.com/snipcart/next-snipcart-store
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/snipcart/next-snipcart-store
- Owner: snipcart
- Created: 2020-10-15T14:51:01.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-02-17T16:43:46.000Z (over 3 years ago)
- Last Synced: 2025-03-28T10:50:24.394Z (2 months ago)
- Language: JavaScript
- Size: 194 KB
- Stars: 40
- Watchers: 4
- Forks: 34
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

# How to Build a React E-Commerce Web AppThis is a demo project using [Snipcart](https://snipcart.com) to create an e-commerce store with [Next.js](https://nextjs.org/).
👀 **Read the step-by-step tutorial [here](https://snipcart.com/blog/react-ecommerce-tutorial)**
## Getting Started
### Environment File
Create a file called `.env.local` at the root of the project with:
```
NEXT_PUBLIC_SNIPCART_API_KEY="[Your Snipcart API Key]"
```### Running the Project
Start your development server:
```bash
npm run dev
# or
yarn dev
```Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
## Learn More
To learn more about Next.js, take a look at the following resources:
- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!
## Deploy on Vercel
The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/import?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.