- [Visual Studio Code]: For its [TypeScript] integration
- [TypeScript]: Which can also replace React's
PropTypes
- [Create React app]: For a PoC or a small project, you can easily [use TypeScript following this guide]
- [Storybook]: To develop your component standalone, see Storybook-driven development
- [Babel]
- [Webpack]
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Kill all running containers. | |
docker kill $(docker ps -q) | |
# Delete all stopped containers. | |
printf "\n>>> Deleting stopped containers\n\n" && docker rm $(docker ps -a -q) | |
# Delete all untagged images. |