The fastest way to get started with Memberstack and react is by using create-memberstack-app
. This CLI tool enables you to quickly build Memberstack apps using react. Initializing a project takes only a few seconds and everything set up for you. You can create a new app using the default Memberstack + Next.js template, or by using one of the official Memberstack examples. To get started, type the following command in your terminal:
npx create-memberstack-app@latest
# or
yarn create memberstack-app
# or
pnpm create memberstack-app
To create a new app in a specific folder, you can send a name as an argument. For example, the following command will create a new Memberstack app called crm-app
in a folder with the same name:
npx create-memberstack-app@latest crm-app
# or
yarn create memberstack-app crm-app
# or
pnpm create memberstack-app crm-app
create-memberstack-app
comes with the following options:
- -e, --example [name]|[github-url] - An example to bootstrap the app with. You can use an example name from the Create Memberstack repo or a GitHub URL. The URL can use any branch and/or subdirectory.
- --use-npm - Explicitly tell the CLI to bootstrap the app using npm. To bootstrap using yarn we recommend to run
yarn create memberstack-app
- --use-pnpm - Explicitly tell the CLI to bootstrap the app using pnpm. To bootstrap using pnpm we recommend running
pnpm create memberstack-app
create-next-app
allows you to create a new Next.js app within seconds. It is officially maintained by the creators of Next.js, and includes a number of benefits:
- Interactive Experience: Running
npx create-memberstack-app
(with no arguments) launches an interactive experience that guides you through setting up a project. - Tailwind Included: Tailwind and React make a great combo, so we included it for you!
- Offline Support: Create Memberstack App will automatically detect if you're offline and bootstrap your project using your local package cache.
- Support for Examples: Create Memberstack App can bootstrap your application using an example from our official examples collection (e.g.
npx create-memberstack-app --example with-checkout
).
@memberstack/react
: Our official React Package packed with useful hooks and components for auth, checkout and user management.@memberstack/admin
: Our official Admin Package that makes it easy to perform administrative tasks on your Memberstack account
Create Memberstack Apps have some additional tools already setup for you:
- Tailwind CSS for utility-first CSS
- Prettier for code formatting