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

https://github.com/kentcdodds/react-workshop-app

An abstraction for all my React workshops
https://github.com/kentcdodds/react-workshop-app

Last synced: about 1 year ago
JSON representation

An abstraction for all my React workshops

Awesome Lists containing this project

README

          


@kentcdodds/react-workshop-app

An abstraction for all my React workshops


---

[![Build Status][build-badge]][build]
[![Code Coverage][coverage-badge]][coverage]
[![version][version-badge]][package]
[![downloads][downloads-badge]][npmtrends]
[![MIT License][license-badge]][license]
[![All Contributors][all-contributors-badge]](#contributors-)
[![PRs Welcome][prs-badge]][prs]
[![Code of Conduct][coc-badge]][coc]

## The problem

I have several repositories for
[my React workshops](https://kentcdodds.com/workshops)

## This solution

This is a set of common abstractions I found useful in those workshop
repositories

## Table of Contents

- [Installation](#installation)
- [Usage](#usage)
- [Issues](#issues)
- [๐Ÿ› Bugs](#-bugs)
- [๐Ÿ’ก Feature Requests](#-feature-requests)
- [Contributors โœจ](#contributors-)
- [LICENSE](#license)

## Installation

This module is distributed via [npm][npm] which is bundled with [node][node] and
should be installed as one of your project's `dependencies`:

```
npm install --save @kentcdodds/react-workshop-app
```

## Usage

This is intended to be used with create-react-app (but it doesn't have to be).

```javascript
// src/index.js
import codegen from 'codegen.macro'

// eslint-disable-next-line
codegen`module.exports = require('@kentcdodds/react-workshop-app/codegen')`

// src/setupTests.js
import '@kentcdodds/react-workshop-app/setup-tests'
```

Then you'll need to have those directories set up. Probably easiest to look at
one of my repos that use this.

## Issues

_Looking to contribute? Look for the [Good First Issue][good-first-issue]
label._

### ๐Ÿ› Bugs

Please file an issue for bugs, missing documentation, or unexpected behavior.

[**See Bugs**][bugs]

### ๐Ÿ’ก Feature Requests

Please file an issue to suggest new features. Vote on feature requests by adding
a ๐Ÿ‘. This helps maintainers prioritize what to work on.

[**See Feature Requests**][requests]

## Contributors โœจ

Thanks goes to these people ([emoji key][emojis]):



Kent C. Dodds
Kent C. Dodds

๐Ÿ’ป ๐Ÿ“– ๐Ÿš‡ โš ๏ธ
Wojciech Matuszewski
Wojciech Matuszewski

๐Ÿ’ป โš ๏ธ
Zac Jones
Zac Jones

๐Ÿ’ป
Marco Moretti
Marco Moretti

๐Ÿ’ป โš ๏ธ
Amr A.Mohammed
Amr A.Mohammed

๐Ÿ’ป
Gustavo Borges Michel
Gustavo Borges Michel

๐Ÿ›
Joyancefa
Joyancefa

๐Ÿ’ป


Markus Lasermann
Markus Lasermann

๐Ÿ’ป โš ๏ธ
Marc-Antoine Ferland
Marc-Antoine Ferland

๐Ÿ’ป
Peter Hozรกk
Peter Hozรกk

๐Ÿ’ป โš ๏ธ
Dan Overton
Dan Overton

๐Ÿ’ป
Artem Zakharchenko
Artem Zakharchenko

๐Ÿ’ป
0xnoob
0xnoob

๐Ÿ›
Joey Cardosi
Joey Cardosi

๐Ÿ’ป

This project follows the [all-contributors][all-contributors] specification.
Contributions of any kind welcome!

## LICENSE

MIT

[npm]: https://www.npmjs.com
[node]: https://nodejs.org
[build-badge]: https://img.shields.io/github/workflow/status/kentcdodds/react-workshop-app/validate/main?logo=github&style=flat-square
[build]: https://github.com/kentcdodds/react-workshop-app/actions?query=workflow%3Avalidate
[coverage-badge]: https://img.shields.io/codecov/c/github/kentcdodds/react-workshop-app.svg?style=flat-square
[coverage]: https://codecov.io/github/kentcdodds/react-workshop-app
[version-badge]: https://img.shields.io/npm/v/@kentcdodds/react-workshop-app.svg?style=flat-square
[package]: https://www.npmjs.com/package/@kentcdodds/react-workshop-app
[downloads-badge]: https://img.shields.io/npm/dm/@kentcdodds/react-workshop-app.svg?style=flat-square
[npmtrends]: http://www.npmtrends.com/@kentcdodds/react-workshop-app
[license-badge]: https://img.shields.io/npm/l/@kentcdodds/react-workshop-app.svg?style=flat-square
[license]: https://github.com/kentcdodds/react-workshop-app/blob/master/LICENSE
[prs-badge]: https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square
[prs]: http://makeapullrequest.com
[coc-badge]: https://img.shields.io/badge/code%20of-conduct-ff69b4.svg?style=flat-square
[coc]: https://github.com/kentcdodds/react-workshop-app/blob/master/other/CODE_OF_CONDUCT.md
[emojis]: https://github.com/all-contributors/all-contributors#emoji-key
[all-contributors]: https://github.com/all-contributors/all-contributors
[all-contributors-badge]: https://img.shields.io/github/all-contributors/kentcdodds/advanced-react-hooks?color=orange&style=flat-square
[bugs]: https://github.com/kentcdodds/react-workshop-app/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+sort%3Acreated-desc+label%3Abug
[requests]: https://github.com/kentcdodds/react-workshop-app/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+sort%3Areactions-%2B1-desc+label%3Aenhancement
[good-first-issue]: https://github.com/kentcdodds/react-workshop-app/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+sort%3Areactions-%2B1-desc+label%3Aenhancement+label%3A%22good+first+issue%22