#code-organization

[ follow ]
#javascript
DEV Community
2 days ago
JavaScript

Modular monolith with the eslint-boundries

Utilizing eslint-boundaries is crucial for enforcing module independence in a growing monolith application. [ more ]
Marcin Wanago Blog - JavaScript, both frontend and backend
7 months ago
JavaScript

Understanding native JavaScript modules

Breaking code into manageable pieces is essential for complex JavaScript projects.
ES6 introduced the official syntax for handling modules, allowing better code organization and reuse. [ more ]
DEV Community
2 days ago
JavaScript

Modular monolith with the eslint-boundries

Utilizing eslint-boundaries is crucial for enforcing module independence in a growing monolith application. [ more ]
Marcin Wanago Blog - JavaScript, both frontend and backend
7 months ago
JavaScript

Understanding native JavaScript modules

Breaking code into manageable pieces is essential for complex JavaScript projects.
ES6 introduced the official syntax for handling modules, allowing better code organization and reuse. [ more ]
morejavascript
Nedbatchelder
4 months ago
JavaScript

One way to fix Python circular imports

Avoid circular imports by organizing code in layers or changing import style to import whole modules. [ more ]
CodeProject
1 year ago
JavaScript

WPF MVVM RichText Demo using YDock[Panel]

MVVM pattern is a useful way to organize code and simplify testing applications. [ more ]
Alvinalexander
4 months ago
Scala

Scala 3: Package objeccts are deprecated, how to create types in a top-level package and use them everywhere in your project

In Scala 3, package objects are deprecated, impacting code accessibility across sub-packages. A workaround is to define common types in a 'near' top-level package for import. [ more ]
Medium
7 months ago
Scala

Modular Programming in Scala with the Cake Pattern

The Cake Pattern in Scala enables modular programming and simplifies dependency management.
The Cake Pattern breaks down applications into interchangeable traits, making code management and updates easier. [ more ]
Wisdom Geek
8 months ago
JavaScript

React TypeScript: Simplify Imports with Path Aliases

Path aliases can simplify imports in large and complex codebases, making them more understandable and clear.
Path aliases can be set up in the tsconfig.json file of a TypeScript project to create import path shortcuts. [ more ]
TechBeamers
8 months ago
Python

How to Import Another Python File

Importing Python files allows you to use code from other files in your project.
There are multiple ways to import Python files, including importing the whole module, using an alias, or importing specific functions. [ more ]
Realpython
10 months ago
Python

Python Basics: Modules and Packages - Real Python

Creating modules helps organize large code projects.
Modules can be imported and used in other files.
Modules can be organized into packages. [ more ]
Simplilearn.com
2 years ago
JavaScript

C# Partial Class: Learn all about Partial Class in C# | Simplilearn

Partial classes in C# allow splitting the functionality of a single class into multiple files, aiding in better organization and collaboration in large projects. [ more ]
[ Load more ]