├── _config.yml ├── .gitattributes ├── banner.png ├── .markdownlint.json ├── .yo-rc.json ├── .github └── workflows │ ├── link_check.yml │ └── workflow.yml ├── index.html ├── contributing.md ├── code-of-conduct.md ├── LICENSE └── README.md /_config.yml: -------------------------------------------------------------------------------- 1 | markdown: CommonMarkGhPages -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | readme.md merge=union 3 | -------------------------------------------------------------------------------- /banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upgundecha/awesome-toolbox/HEAD/banner.png -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- 1 | { 2 | "default": true, 3 | "line-length": false, 4 | "no-duplicate-header": false 5 | } 6 | -------------------------------------------------------------------------------- /.yo-rc.json: -------------------------------------------------------------------------------- 1 | { 2 | "generator-awesome-list": { 3 | "promptValues": { 4 | "username": "Unmesh Gundecha", 5 | "email": "upgundecha@gmail.com" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /.github/workflows/link_check.yml: -------------------------------------------------------------------------------- 1 | name: Check Markdown links 2 | 3 | on: 4 | push: 5 | branches: 6 | - master 7 | schedule: 8 | # Run every Monday 9 | - cron: "0 0 * * 1" 10 | 11 | jobs: 12 | markdown-link-check: 13 | runs-on: ubuntu-latest 14 | steps: 15 | - uses: actions/checkout@master 16 | - uses: gaurav-nelson/github-action-markdown-link-check@v1 -------------------------------------------------------------------------------- /.github/workflows/workflow.yml: -------------------------------------------------------------------------------- 1 | name: CI 2 | 3 | on: [push, pull_request] 4 | 5 | jobs: 6 | build: 7 | 8 | runs-on: ubuntu-latest 9 | 10 | steps: 11 | - uses: actions/checkout@v1 12 | - name: markdown syntax 13 | uses: nosborn/github-action-markdown-cli@v1.1.1 14 | with: 15 | files: README.md 16 | config_file: ".markdownlint.json" 17 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 10 | awesome-engineering 11 | 12 | 16 | 17 | 18 | 19 | 20 | 21 | 26 | 27 | -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- 1 | # Contribution Guidelines 2 | 3 | Please note that this project is released with a 4 | [Contributor Code of Conduct](code-of-conduct.md). By participating in this 5 | project you agree to abide by its terms. 6 | 7 | --- 8 | 9 | Ensure your pull request adheres to the following guidelines: 10 | 11 | - Make sure the high level list is alphabetcially ordered 12 | 13 | Thank you for your suggestions! 14 | 15 | 16 | ## Updating your PR 17 | 18 | A lot of times, making a PR adhere to the standards above can be difficult. 19 | If the maintainers notice anything that we'd like changed, we'll ask you to 20 | edit your PR before we merge it. There's no need to open a new PR, just edit 21 | the existing one. If you're not sure how to do that, 22 | [here is a guide](https://github.com/RichardLitt/knowledge/blob/master/github/amending-a-commit-guide.md) 23 | on the different ways you can update your PR so that we can merge it. 24 | -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | In the interest of fostering an open and welcoming environment, we as 6 | contributors and maintainers pledge to making participation in our project and 7 | our community a harassment-free experience for everyone, regardless of age, body 8 | size, disability, ethnicity, gender identity and expression, level of experience, 9 | nationality, personal appearance, race, religion, or sexual identity and 10 | orientation. 11 | 12 | ## Our Standards 13 | 14 | Examples of behavior that contributes to creating a positive environment 15 | include: 16 | 17 | * Using welcoming and inclusive language 18 | * Being respectful of differing viewpoints and experiences 19 | * Gracefully accepting constructive criticism 20 | * Focusing on what is best for the community 21 | * Showing empathy towards other community members 22 | 23 | Examples of unacceptable behavior by participants include: 24 | 25 | * The use of sexualized language or imagery and unwelcome sexual attention or 26 | advances 27 | * Trolling, insulting/derogatory comments, and personal or political attacks 28 | * Public or private harassment 29 | * Publishing others' private information, such as a physical or electronic 30 | address, without explicit permission 31 | * Other conduct which could reasonably be considered inappropriate in a 32 | professional setting 33 | 34 | ## Our Responsibilities 35 | 36 | Project maintainers are responsible for clarifying the standards of acceptable 37 | behavior and are expected to take appropriate and fair corrective action in 38 | response to any instances of unacceptable behavior. 39 | 40 | Project maintainers have the right and responsibility to remove, edit, or 41 | reject comments, commits, code, wiki edits, issues, and other contributions 42 | that are not aligned to this Code of Conduct, or to ban temporarily or 43 | permanently any contributor for other behaviors that they deem inappropriate, 44 | threatening, offensive, or harmful. 45 | 46 | ## Scope 47 | 48 | This Code of Conduct applies both within project spaces and in public spaces 49 | when an individual is representing the project or its community. Examples of 50 | representing a project or community include using an official project e-mail 51 | address, posting via an official social media account, or acting as an appointed 52 | representative at an online or offline event. Representation of a project may be 53 | further defined and clarified by project maintainers. 54 | 55 | ## Enforcement 56 | 57 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 58 | reported by contacting the project team at upgundecha@gmail.com. All 59 | complaints will be reviewed and investigated and will result in a response that 60 | is deemed necessary and appropriate to the circumstances. The project team is 61 | obligated to maintain confidentiality with regard to the reporter of an incident. 62 | Further details of specific enforcement policies may be posted separately. 63 | 64 | Project maintainers who do not follow or enforce the Code of Conduct in good 65 | faith may face temporary or permanent repercussions as determined by other 66 | members of the project's leadership. 67 | 68 | ## Attribution 69 | 70 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, 71 | available at [http://contributor-covenant.org/version/1/4][version] 72 | 73 | [homepage]: http://contributor-covenant.org 74 | [version]: http://contributor-covenant.org/version/1/4/ 75 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Creative Commons Legal Code 2 | 3 | CC0 1.0 Universal 4 | 5 | CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE 6 | LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN 7 | ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS 8 | INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES 9 | REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS 10 | PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM 11 | THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED 12 | HEREUNDER. 13 | 14 | Statement of Purpose 15 | 16 | The laws of most jurisdictions throughout the world automatically confer 17 | exclusive Copyright and Related Rights (defined below) upon the creator 18 | and subsequent owner(s) (each and all, an "owner") of an original work of 19 | authorship and/or a database (each, a "Work"). 20 | 21 | Certain owners wish to permanently relinquish those rights to a Work for 22 | the purpose of contributing to a commons of creative, cultural and 23 | scientific works ("Commons") that the public can reliably and without fear 24 | of later claims of infringement build upon, modify, incorporate in other 25 | works, reuse and redistribute as freely as possible in any form whatsoever 26 | and for any purposes, including without limitation commercial purposes. 27 | These owners may contribute to the Commons to promote the ideal of a free 28 | culture and the further production of creative, cultural and scientific 29 | works, or to gain reputation or greater distribution for their Work in 30 | part through the use and efforts of others. 31 | 32 | For these and/or other purposes and motivations, and without any 33 | expectation of additional consideration or compensation, the person 34 | associating CC0 with a Work (the "Affirmer"), to the extent that he or she 35 | is an owner of Copyright and Related Rights in the Work, voluntarily 36 | elects to apply CC0 to the Work and publicly distribute the Work under its 37 | terms, with knowledge of his or her Copyright and Related Rights in the 38 | Work and the meaning and intended legal effect of CC0 on those rights. 39 | 40 | 1. Copyright and Related Rights. A Work made available under CC0 may be 41 | protected by copyright and related or neighboring rights ("Copyright and 42 | Related Rights"). Copyright and Related Rights include, but are not 43 | limited to, the following: 44 | 45 | i. the right to reproduce, adapt, distribute, perform, display, 46 | communicate, and translate a Work; 47 | ii. moral rights retained by the original author(s) and/or performer(s); 48 | iii. publicity and privacy rights pertaining to a person's image or 49 | likeness depicted in a Work; 50 | iv. rights protecting against unfair competition in regards to a Work, 51 | subject to the limitations in paragraph 4(a), below; 52 | v. rights protecting the extraction, dissemination, use and reuse of data 53 | in a Work; 54 | vi. database rights (such as those arising under Directive 96/9/EC of the 55 | European Parliament and of the Council of 11 March 1996 on the legal 56 | protection of databases, and under any national implementation 57 | thereof, including any amended or successor version of such 58 | directive); and 59 | vii. other similar, equivalent or corresponding rights throughout the 60 | world based on applicable law or treaty, and any national 61 | implementations thereof. 62 | 63 | 2. Waiver. To the greatest extent permitted by, but not in contravention 64 | of, applicable law, Affirmer hereby overtly, fully, permanently, 65 | irrevocably and unconditionally waives, abandons, and surrenders all of 66 | Affirmer's Copyright and Related Rights and associated claims and causes 67 | of action, whether now known or unknown (including existing as well as 68 | future claims and causes of action), in the Work (i) in all territories 69 | worldwide, (ii) for the maximum duration provided by applicable law or 70 | treaty (including future time extensions), (iii) in any current or future 71 | medium and for any number of copies, and (iv) for any purpose whatsoever, 72 | including without limitation commercial, advertising or promotional 73 | purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each 74 | member of the public at large and to the detriment of Affirmer's heirs and 75 | successors, fully intending that such Waiver shall not be subject to 76 | revocation, rescission, cancellation, termination, or any other legal or 77 | equitable action to disrupt the quiet enjoyment of the Work by the public 78 | as contemplated by Affirmer's express Statement of Purpose. 79 | 80 | 3. Public License Fallback. Should any part of the Waiver for any reason 81 | be judged legally invalid or ineffective under applicable law, then the 82 | Waiver shall be preserved to the maximum extent permitted taking into 83 | account Affirmer's express Statement of Purpose. In addition, to the 84 | extent the Waiver is so judged Affirmer hereby grants to each affected 85 | person a royalty-free, non transferable, non sublicensable, non exclusive, 86 | irrevocable and unconditional license to exercise Affirmer's Copyright and 87 | Related Rights in the Work (i) in all territories worldwide, (ii) for the 88 | maximum duration provided by applicable law or treaty (including future 89 | time extensions), (iii) in any current or future medium and for any number 90 | of copies, and (iv) for any purpose whatsoever, including without 91 | limitation commercial, advertising or promotional purposes (the 92 | "License"). The License shall be deemed effective as of the date CC0 was 93 | applied by Affirmer to the Work. Should any part of the License for any 94 | reason be judged legally invalid or ineffective under applicable law, such 95 | partial invalidity or ineffectiveness shall not invalidate the remainder 96 | of the License, and in such case Affirmer hereby affirms that he or she 97 | will not (i) exercise any of his or her remaining Copyright and Related 98 | Rights in the Work or (ii) assert any associated claims and causes of 99 | action with respect to the Work, in either case contrary to Affirmer's 100 | express Statement of Purpose. 101 | 102 | 4. Limitations and Disclaimers. 103 | 104 | a. No trademark or patent rights held by Affirmer are waived, abandoned, 105 | surrendered, licensed or otherwise affected by this document. 106 | b. Affirmer offers the Work as-is and makes no representations or 107 | warranties of any kind concerning the Work, express, implied, 108 | statutory or otherwise, including without limitation warranties of 109 | title, merchantability, fitness for a particular purpose, non 110 | infringement, or the absence of latent or other defects, accuracy, or 111 | the present or absence of errors, whether or not discoverable, all to 112 | the greatest extent permissible under applicable law. 113 | c. Affirmer disclaims responsibility for clearing rights of other persons 114 | that may apply to the Work or any use thereof, including without 115 | limitation any person's Copyright and Related Rights in the Work. 116 | Further, Affirmer disclaims responsibility for obtaining any necessary 117 | consents, permissions or other rights required for any use of the 118 | Work. 119 | d. Affirmer understands and acknowledges that Creative Commons is not a 120 | party to this document and has no duty or obligation with respect to 121 | this CC0 or use of the Work. 122 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Awesome tools for software development, testing and productivity [![Awesome](https://awesome.re/badge.svg)](https://awesome.re) 2 | 3 | ![Alt](banner.png "banner") 4 | 5 | ### A curated list of awesome tools for software development, testing and productivity published on my ![Twitter Follow](https://img.shields.io/twitter/follow/upgundecha?style=social) 6 | 7 | > Please do contribute your success stories, experience reports, blogs, videos or anecdotes of using these tools as [Issues](https://github.com/upgundecha/awesome-toolbox/issues) with special tags 8 | 9 | ## Five free and open source tools to test your mailing features confidently 10 | * [FakeSMTP (Java)](http://nilhcem.com/FakeSMTP/) 11 | * [rumbster (Ruby)](https://github.com/aesterline/rumbster) 12 | * [fake-smtp-server (Node.js)](https://www.npmjs.com/package/fake-smtp-server) 13 | * [mailinator](https://www.mailinator.com/) 14 | * [testmail dot app](https://testmail.app/) 15 | * [mailtrap](https://mailtrap.io/) 16 | 17 | ## Build personal robotic process automation with these cool tools 18 | * Windows 19 | * [Powershell](https://docs.microsoft.com/en-us/powershell/scripting/overview?view=powershell-7) 20 | * [Batch](https://www.windowscentral.com/how-create-and-run-batch-file-windows-10) 21 | * [AutoIt](https://www.autoitscript.com/site/) 22 | * [AutoHotKey](https://www.autoitscript.com/site/) 23 | * [VBScript](https://en.wikipedia.org/wiki/VBScript) 24 | * Mac 25 | * [Automator](https://support.apple.com/en-gb/guide/automator/welcome/mac) 26 | * [Apple Script](https://developer.apple.com/library/archive/documentation/AppleScript/Conceptual/AppleScriptLangGuide/introduction/ASLR_intro.html) 27 | * iOS 28 | * [Shortcuts App](https://apps.apple.com/us/app/shortcuts/id915249334) 29 | * Unix/Linux 30 | * [Bash](https://www.gnu.org/software/bash/) 31 | * [Sed](https://www.gnu.org/software/sed/manual/sed.html) 32 | * [Awk](https://www.gnu.org/software/gawk/manual/gawk.html) 33 | * [Expect](https://wiki.tcl-lang.org/page/Expect) 34 | * [Cron Tab](https://en.wikipedia.org/wiki/Cron) 35 | * Web 36 | * [IFTT](https://ifttt.com) 37 | * [Zapier](https://zapier.com/) 38 | * [Automate.io](https://automate.io/) 39 | * [huginn](https://github.com/huginn/huginn) 40 | 41 | ## Build cool IoT projects with Arduino tools 42 | * [Arduino IDE](https://www.arduino.cc/en/main/software) - _The open-source Arduino Software (IDE) makes it easy to write code and upload it to the board. It runs on Windows, Mac OS X, and Linux. The environment is written in Java and based on Processing and other open-source software._ 43 | * [Codebender](https://codebender.cc/) - _Arduino IDE in the Cloud. Codebender includes a Arduino web editor so you can code, store and manage your Arduino sketches on the cloud._ 44 | * [Fritzing](https://fritzing.org/) - _Fritzing is an open-source hardware initiative that makes electronics accessible as a creative material for anyone. It allows users to document their prototypes, share them with others, teach electronics in a classroom, and layout and manufacture professional pcbs._ 45 | * [circuito.io](https://www.circuito.io/) - _circuito.io is an online tool for designing and testing electronic circuits._ 46 | * [Tinkercad](https://www.tinkercad.com/) - _Tinkercad is a free, online 3D modeling program that runs in a web browser, known for its simplicity and ease of use._ 47 | * [johnny-five](http://johnny-five.io/) - _Johnny-Five is the JavaScript library for Robotics & IoT Platform._ 48 | * [pyFirmata](https://pypi.org/project/pyFirmata/) - pyFirmata is the Python library for Firmata Protocol used in Arduino._ 49 | 50 | ## Free and open source tools for checking visual regression bugs 51 | * [Gemnini - Hermione](https://github.com/gemini-testing/hermione) - _Hermione is a utility for integration testing of web pages using WebdriverIO v4 and Mocha. Comes with assertions to support visual regression testing._ 52 | * [Backstop.js](https://garris.github.io/BackstopJS/) - _visual regression testing for web apps. Uses Chrome-headless and Puppeteer scripting using JavaScript._ 53 | * [Needle](https://needle.readthedocs.io/en/latest/) - _Needle is a tool for testing CSS and visuals with Selenium and nose using Python._ 54 | * [pix-diff](https://www.npmjs.com/package/pix-diff) - _A lightweight protractor plugin for image comparison._ 55 | * [Visual Regression Tracker](https://github.com/Visual-Regression-Tracker/Visual-Regression-Tracker) - _Open source, self hosted solution for visual testing and managing results of visual testing._ 56 | * [Storyshots](https://github.com/storybookjs/storybook/tree/master/addons/storyshots) - _StoryShots is integration between [Storybook.js](https://storybook.js.org/) and [Jest](https://jestjs.io/) Snapshot Testing._ 57 | * [Galen](http://galenframework.com/) - _Automated testing of look and feel for your responsive websites. Galen is implemented in Java._ 58 | * [Loki](https://loki.js.org/) - _Tool to test [Storybook.js](https://storybook.js.org/) project for visual regressions._ 59 | * [Creevy](https://github.com/wKich/creevey) - _Tool to test [Storybook.js](https://storybook.js.org/) project for visual regressions._ 60 | * [Vizregress](https://github.com/chwilliamson/Vizregress) - _A visual regressions tool on .NET platform 61 | 62 | ## Great developer tools made with Electron.js 63 | - [VSCode](https://code.visualstudio.com/) 64 | - [Postman](https://www.postman.com/) 65 | - [Cypress.io](https://www.cypress.io/) 66 | - [Insomania](https://insomnia.rest/) 67 | - [Appium Desktop](http://appium.io/downloads.html) 68 | - [Mockoon](https://mockoon.com/) 69 | - [Postbird](https://github.com/Paxa/postbird) 70 | - [MongoDB Commpass](https://www.mongodb.com/products/compass) 71 | 72 | ## Free and open source tools to get rid of your testing data woes 73 | - [Mockaroo](https://www.mockaroo.com/) 74 | - [JSON Generator](https://next.json-generator.com/) 75 | - [Generatedata](https://www.generatedata.com/) 76 | - [faker for Node](https://www.npmjs.com/package/faker) 77 | - [faker for Java](https://github.com/DiUS/java-faker) 78 | - [faker for Python](https://pypi.org/project/Faker/) 79 | - [faker for Ruby](https://github.com/faker-ruby/faker) 80 | - [dummy-json](https://www.npmjs.com/package/dummy-json) 81 | - [JSONPlaceholder](https://jsonplaceholder.typicode.com/) 82 | 83 | 84 | ## Open source and free HTTP mocking, stubbing and service virtualisation tools to speed up your development and testing 85 | - [JSON Server](https://github.com/typicode/json-server) 86 | - [My JSON Server](https://my-json-server.typicode.com/) 87 | - [Wiremock](http://wiremock.org/) 88 | - [MockServer](https://www.mock-server.com/) 89 | - [MounteBank](http://www.mbtest.org/) 90 | - [Stubby4j](https://github.com/azagniotov/stubby4j) 91 | - [Nock](https://github.com/nock/nock) 92 | - [Mokcy](https://designer.mocky.io/) 93 | - [Pact.js](https://github.com/pact-foundation) 94 | - [qontract.run](https://qontract.run/) 95 | - [Mockoon](https://mockoon.com/) 96 | - [LocalMockServer](https://github.com/jayakumarreddy/Local-Mock-Server/) 97 | - [mockserver-ui](https://github.com/mock-server/mockserver-ui) 98 | - [wiremock-ui](https://github.com/plouc/wiremock-ui) 99 | - [Atmo](https://github.com/Raathigesh/atmo) 100 | - [Castlemock](https://github.com/castlemock/castlemock) 101 | 102 | ## Tools for Behaviour Driven Development (BDD) 103 | - [Cucumber](https://cucumber.io/) - _Java, Ruby, JavaScript, TypeScript, Go_ 104 | - [JBehave](https://jbehave.org/) - _Java_ 105 | - [SpecFlow.NET](https://specflow.org/) - _.NET_ 106 | - [Behave](https://pypi.org/project/behave/) - _Python_ 107 | - [Lettuce](https://pypi.org/project/lettuce/) - _Python_ 108 | - [Behat](https://docs.behat.org/en/latest/) - _PHP._ 109 | - [Spek](https://www.spekframework.org/) - _Kotlin_ 110 | - [EasyB](http://www.easyb.io/) - _JVM_ 111 | - [Cucumberish](https://github.com/Ahmed-Ali/Cucumberish) - _Xcode_ 112 | - [Serenity BDD](http://www.thucydides.info/#/) - _Java, JavaScript_ 113 | 114 | ## Cool x-ray tools to Debug, Test or Investigate software and apps 115 | - [Fiddler](https://www.telerik.com/fiddler) 116 | - [Charles Proxy](https://www.charlesproxy.com/) - _Paid_ 117 | - [Wireshark](https://www.wireshark.org/) 118 | - [React Developer Tools](https://chrome.google.com/webstore/detail/react-developer-tools/fmkadmapgofadopljbjfkapdkoienihi?hl=en) 119 | - [Augury](https://augury.rangle.io/) 120 | - [Vu-devtools](https://chrome.google.com/webstore/detail/vuejs-devtools/nhdogjmejiglipccpnnnanhbledajbpd?hl=en) 121 | - [JD-GUI](http://java-decompiler.github.io/) - _Java_ 122 | - [ILSpy](https://github.com/icsharpcode/ILSpy) - _.NET_ 123 | - [adb](https://developer.android.com/studio/command-line/adb) - _Android_ 124 | - [BrowserMob Proxy](https://github.com/lightbody/browsermob-proxy) 125 | 126 | ## Open source load testing tools to build blazingly fast applications 127 | - [JMeter](https://jmeter.apache.org/) 128 | - [Locust](https://locust.io/) - _Uses Python_ 129 | - [Artillery](https://artillery.io/) - _Uses JavaScript_ 130 | - [k6](https://k6.io/) - _Uses JavaScript_ 131 | - [Gatling](https://gatling.io/) - _Uses Scala_ 132 | 133 | ## Top Infrastructure as Code (IaC) tools for AWS Cloud 134 | - [AWS CloudFormation](https://aws.amazon.com/cloudformation/) 135 | - [AWS CDK](https://aws.amazon.com/cdk/) 136 | - [Terraform](https://www.terraform.io/) 137 | - [Pulumi](https://www.pulumi.com/) 138 | 139 | ## Make your automated tests eloquent with these awesome assertion libraries in Java and Kotlin 140 | - [AssertJ](https://assertj.github.io/doc/) 141 | - [Hamcrest](http://hamcrest.org/) - _also supported on multiple other languages_ 142 | - [Truth](https://github.com/google/truth) - _Java & Android_ 143 | - [Strikt](https://strikt.io/) - _Kotlin_ 144 | - [Atrium](https://docs.atriumlib.org/) - _Kotlin_ 145 | 146 | ## Five Java Libraries to amplify your automated testing 147 | - [JSONUnit](https://github.com/lukas-krecan/JsonUnit) 148 | - [XMLUnit](https://github.com/xmlunit/xmlunit) 149 | - [DBUnit](http://dbunit.sourceforge.net/) 150 | - [ArchUnit](https://www.archunit.org/) - _Tests architecture aspects of Java Code_ 151 | - [PDFUnit](http://www.pdfunit.com/) - _Paid_ 152 | 153 | ## Eight e2e testing tools for Node.js, JavaScript and TypeScript 154 | - [Cypress.io](https://www.cypress.io/) 155 | - [Webdriver.io](https://webdriver.io/) 156 | - [Nightwatch.js](https://nightwatchjs.org/) 157 | - [Codecept.js](https://codecept.io/) 158 | - [Puppeteer](https://github.com/puppeteer/puppeteer) 159 | - [Playwright](https://github.com/microsoft/playwright) 160 | - [Testcafe](https://devexpress.github.io/testcafe/) 161 | - [Taiko](https://github.com/getgauge/taiko) 162 | - [UIlicious](https://uilicious.com/) - _Paid_ 163 | 164 | ## Five essential tools for Developers on macOS 165 | - [iTerm2](https://www.iterm2.com/) 166 | - [Homebrew](https://brew.sh/) 167 | - [VSCode](https://code.visualstudio.com/) 168 | - [Postman](https://www.postman.com/) 169 | - [Docker Desktop](https://www.docker.com/products/docker-desktop) 170 | 171 | ## Six tools to run effective remote and virtual online retrospective meetings for Agile delivery teams 172 | - [IdeaBoardz](https://ideaboardz.com/) 173 | - [FunRetro](https://funretro.io/) 174 | - [Trello](https://trello.com/) 175 | - [MIRO](https://miro.com/) 176 | - [TeamRetro](https://www.teamretro.com/) 177 | - [Retro.tools](https://retro.tools/) 178 | 179 | ## Top five Continuous Integration (CI) tools to supercharge your builds 180 | - [Jenkins](https://www.jenkins.io/) 181 | - [GitHub Actions](https://github.com/features/actions) 182 | - [GitLab CI](https://docs.gitlab.com/ee/ci/) 183 | - [CircleCI](https://circleci.com/) 184 | - [Travis CI](https://travis-ci.org/) 185 | 186 | --- 187 | 188 | ## Contribute 189 | 190 | Contributions welcome! Read the [contribution guidelines](contributing.md) first. 191 | 192 | ## License 193 | 194 | [![CC0](https://mirrors.creativecommons.org/presskit/buttons/88x31/svg/cc-zero.svg)](https://creativecommons.org/publicdomain/zero/1.0) 195 | 196 | To the extent possible under law, Unmesh Gundecha has waived all copyright and 197 | related or neighboring rights to this work. 198 | 199 | 209 | 210 | ![](firstDiagram.svg) 211 | --------------------------------------------------------------------------------