Articles
Tags
AllClient-Side ArchitectureDesignDesign PrinciplesDomain-Driven DesignEnterprise Node + TypeScriptGraphQLHumans & CodeNetworking & OpsObject-Oriented AnalysisObject-Oriented DesignObject-Oriented ProgrammingSoftware DesignSoftware ProfessionalismTest-Driven DevelopmentTestingThe MetaphysicsThe Phases of CraftshipWeb Development
13
Showing 13 article(s) about "Web Development"
JavaScript forEach | Looping Through an Array in JSWeb Development
JavaScript's for each loop is a quick and easy way to iterate over an array. Used as an alternative to the for loop, it can make c...
How to Get the Currently Playing Song using the Spotify Node.js API & TypeScriptWeb Development
A quick and straightforward guide to hooking into the Spotify's awesome API to show the current song that you're listening to. It ...
How to Prerender Comments | Gatsbyjs GuideWeb Development
Prerendering dynamic data can have several advantages. For Gatsby blogs with high engagement, comments can positively impact SEO, ...
Over $85 billion spent on fixing bad code [bootcamps, junior devs, JavaScript, and software design principles]Web Development
More and more money is being spent by companies on maintaining bad JavaScript code. Here's where I think our industry needs to cha...
TypeScript vs. JavaScript [Pros / cons]Web Development
TypeScript is arguably one of the best things to come to the JavaScript world helping developers comfortably create complex enterp...
Junction Model Pattern: Many-to-Many - SequelizeWeb Development
Many-to-many is a common modeling relationship between two entities. Here's one way to handle it with the Sequelize ORM.