Skip to content

Commit 192c6e7

Browse files
author
JoelCodes
committed
Updated README to split mechanisms from puzzles, and add more instructions.
1 parent 04aa399 commit 192c6e7

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,21 @@ For these exercises, you only need to go the `/answers` directory and implement
1616

1717
Or, you can run only the test suites for any exercise using the commands below.
1818

19+
> Quick tip: To run any of the exercises below in watch mode, add `-- --watch`, (e.g. `npm run making-promises -- --watch`)
20+
21+
You are free to look at any of the tests for guidance, but don't change them.
22+
1923
## Outline
2024

25+
### The Promise Toolbox
26+
27+
These exercises are all about learning the mechanisms that we can use to create, transform, and combine promises.
28+
2129
`npm run making-promises` - Create promises with Promise.resolve, Promise.reject, and the Promise constructor.
2230
`npm run and-then` - Use `.then(cb)` and `.catch(cb)` to consume the output of promises, as well as to transform and chain async processes.
31+
32+
### Promise Puzzles
33+
34+
Now it's time to use the tricks from above to solve some problems.
35+
2336
`npm run callbacks` - Turn callback-centric functions into promise-centric functions.

0 commit comments

Comments
 (0)