MRMohammad Reza Ghasemiinmreza.hashnode.dev·Sep 29, 2022 · 3 min readRemoving sensitive data from the git historyPerhaps you saved sensitive data like a password or a token in your project. From a security point of view, it’s a bad practice to put them in your code directly and keep them in the repository. For example, the best approach in the Node.js app and o...00
MRMohammad Reza Ghasemiinmreza.hashnode.dev·Sep 29, 2022 · 3 min readWhat are Snippets in VSCode?Code snippets are templates that make it easier to enter repeating code patterns, such as loops or conditional-statements. (Visual Studio Code) For example, in JavaScript, instead of inserting console.log(’Hello World…’) you can use VSCode built-in ...00