Articles tagged with: Development

Monorepo-related resources

Summary: This blog post provides a comprehensive list of resources related to monorepos, including articles, papers, talks, and courses. The resources are sorted alphabetically and include information from various years.


Course Review: TypeScript Essential Training (LinkedIn Learning)

Summary: The TypeScript Essential Training course on LinkedIn Learning is a comprehensive and detailed dive into TypeScript, covering basic setups, ES2015 concepts, and advanced topics. The course provides real-world examples and a sample application for practical learning. The explanations of how TypeScript compiles to JavaScript are interesting, although some features may be missing in the sample code. Overall, the course offers valuable learnings.


Course Review: Learning Typescript (LinkedIn Learning)

Summary: The course 'Learning Typescript' on LinkedIn Learning is a concise and focused guide to setting up Typescript and learning the basics in just over an hour. It also mentions useful tools like DefinitelyTyped.


Avoiding relative imports in Javascript, TypeScript, Webpack and Jest

Summary: This blog post discusses how to avoid or remove relative imports in JavaScript projects by using module aliases in Webpack and Babel, as well as configuring path mappings in TypeScript and Jest. The goal is to make imports more readable and maintainable.


Don't avoid test randomness, embrace and control it

Summary: The blog post discusses the importance of embracing and controlling test randomness. The author argues against using fixed seed values in tests and suggests generating a random seed and printing it to reproduce failures. They highlight the benefits of using varied test data and the potential drawbacks of static test data. The post emphasizes the value of adding randomness to tests to uncover hidden bugs and achieve anti-fragility.