Skip to content

Commit

Permalink
docs(parrot-server): add readme
Browse files Browse the repository at this point in the history
  • Loading branch information
anescobar1991 authored and jackjocross committed Mar 20, 2018
1 parent 7f0becb commit ce85bf4
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 8 deletions.
17 changes: 9 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,14 +72,15 @@ app.listen(3000);

Parrot is divided into several packages that can be used together depending on your use case.

| Name | Description |
| ------------------------------------------------------------ | ------------------------------------------------------------ |
| **[parrot-core](https://github.com/americanexpress/parrot/blob/master/packages/parrot-core)** | Core Parrot functionality that can be extended to new use cases |
| **[parrot-devtools](https://github.com/americanexpress/parrot/blob/master/packages/parrot-devtools)** | Devtools that allow you to switch between Parrot scenarios |
| **[parrot-fetch](https://github.com/americanexpress/parrot/blob/master/packages/parrot-fetch)** | Fetch mocking implementation of Parrot |
| **[parrot-friendly](https://github.com/americanexpress/parrot/blob/master/packages/parrot-friendly)** | Helper library to write your scenarios in BDD style |
| **[parrot-graphql](https://github.com/americanexpress/parrot/blob/master/packages/parrot-graphql)** | Helper library to add GraphQL mocks to your scenarios |
| **[parrot-middleware](https://github.com/americanexpress/parrot/blob/master/packages/parrot-middleware)** | Express middleware implementation of Parrot |
| Name | Description |
| --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------- |
| **[parrot-core](https://github.com/americanexpress/parrot/blob/master/packages/parrot-core)** | Core Parrot functionality that can be extended to new use cases |
| **[parrot-devtools](https://github.com/americanexpress/parrot/blob/master/packages/parrot-devtools)** | Devtools that allow you to switch between Parrot scenarios |
| **[parrot-fetch](https://github.com/americanexpress/parrot/blob/master/packages/parrot-fetch)** | Fetch mocking implementation of Parrot |
| **[parrot-friendly](https://github.com/americanexpress/parrot/blob/master/packages/parrot-friendly)** | Helper library to write your scenarios in BDD style |
| **[parrot-graphql](https://github.com/americanexpress/parrot/blob/master/packages/parrot-graphql)** | Helper library to add GraphQL mocks to your scenarios |
| **[parrot-middleware](https://github.com/americanexpress/parrot/blob/master/packages/parrot-middleware)** | Express middleware implementation of Parrot |
| **[parrot-server](https://github.com/americanexpress/parrot/blob/master/packages/parrot-server)** | CLI to get a parrot server up and running |

## Contributing
We welcome Your interest in the American Express Open Source Community on Github.
Expand Down
11 changes: 11 additions & 0 deletions packages/parrot-server/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# parrot-server

parrot-server is a CLI that creates and starts up an express app that uses [parrot-middleware](https://github.com/americanexpress/parrot/blob/master/packages/parrot-middleware)

## Example

```bash
parrot-server --port 3001 --scenarios /path/to/scenarios.js
# could also use shorthand:
parrot-server -p 3001 -s /path/to/scenarios.js
```

0 comments on commit ce85bf4

Please sign in to comment.