JavaScript/TypeScriptUnit test for singleton class Singleton class problem in terms of tests Do you write tests for singleton class too? If the logic is simple enough ... 2020.10.07JavaScript/TypeScript
Other techsStart Powershell with specified execution policy without changing default How to start powershell I often starts powershell.exe from an explorer instead of command prompt because it looks better... 2020.09.30Other techs
JavaScript/TypeScriptUsing spread operator for process.env I faced strange behavior when I used spread operator for process.env. In my project, our main source is Typescript but ... 2020.09.26JavaScript/TypeScript
JavaScript/TypeScriptHow to write good unit tests? Unit Test makes your software better in terms of not only quality but also class structure because you need to separate... 2020.09.23JavaScript/TypeScript
DockerDev Environment in Docker Container When we try something new we need to install something and then remove it if it is no longer necessary but our PC will g... 2020.09.16Docker
JavaScript/TypeScriptDependency injection in Typescript Dependency Injection is one of important techniques to develop testable software. This technique which passes the depen... 2020.09.13JavaScript/TypeScript