diff --git a/content/community/tools-starter-kits.md b/content/community/tools-starter-kits.md index 9e99e33b..5774c053 100644 --- a/content/community/tools-starter-kits.md +++ b/content/community/tools-starter-kits.md @@ -13,6 +13,7 @@ permalink: community/starter-kits.html * **[nwb](https://github.com/insin/nwb)** - A toolkit for React apps, libraries and other npm modules for the web * **[razzle](https://github.com/jaredpalmer/razzle)** - Create server-rendered universal JavaScript applications with no configuration * **[Neutrino](https://neutrino.js.org/)** - Create and build modern JavaScript applications with zero initial configuration +* **[Parcel](https://parceljs.org)** - Blazing fast, zero configuration web application bundler that [works with React](https://parceljs.org/recipes.html#react) ## Other Starter Kits diff --git a/content/docs/create-a-new-react-app.md b/content/docs/create-a-new-react-app.md index 48e7a4e2..2847bfc2 100644 --- a/content/docs/create-a-new-react-app.md +++ b/content/docs/create-a-new-react-app.md @@ -74,7 +74,7 @@ The following toolchains offer more flexiblity and choice. We recommend them to - **[nwb](https://github.com/insin/nwb)** is particularly great for [publishing React components for npm](https://github.com/insin/nwb/blob/master/docs/guides/ReactComponents.md#developing-react-components-and-libraries-with-nwb). It [can be used](https://github.com/insin/nwb/blob/master/docs/guides/ReactApps.md#developing-react-apps-with-nwb) for creating React apps, too. -- **[Parcel](https://parceljs.org/)** is a very fast JavaScript bundler that requires no configuration. +- **[Parcel](https://parceljs.org/)** is a blazing fast, zero configuration web application bundler that [works with React](https://parceljs.org/recipes.html#react) - **[Razzle](https://github.com/jaredpalmer/razzle)** is a server-rendering framework that doesn't require any configuration, but offers more flexibility than Next.js.