Frontend Enhancements: - Complete React TypeScript frontend with modern UI components - Distributed workflows management interface with real-time updates - Socket.IO integration for live agent status monitoring - Agent management dashboard with cluster visualization - Project management interface with metrics and task tracking - Responsive design with proper error handling and loading states Backend Infrastructure: - Distributed coordinator for multi-agent workflow orchestration - Cluster management API with comprehensive agent operations - Enhanced database models for agents and projects - Project service for filesystem-based project discovery - Performance monitoring and metrics collection - Comprehensive API documentation and error handling Documentation: - Complete distributed development guide (README_DISTRIBUTED.md) - Comprehensive development report with architecture insights - System configuration templates and deployment guides The platform now provides a complete web interface for managing the distributed AI cluster with real-time monitoring, workflow orchestration, and agent coordination capabilities. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
55 lines
1.1 KiB
Markdown
55 lines
1.1 KiB
Markdown
# import-fresh
|
|
|
|
> Import a module while bypassing the [cache](https://nodejs.org/api/modules.html#modules_caching)
|
|
|
|
Useful for testing purposes when you need to freshly import a module.
|
|
|
|
## ESM
|
|
|
|
For ESM, you can use this snippet:
|
|
|
|
```js
|
|
const importFresh = moduleName => import(`${moduleName}?${Date.now()}`);
|
|
|
|
const {default: foo} = await importFresh('foo');
|
|
```
|
|
|
|
**This snippet causes a memory leak, so only use it for short-lived tests.**
|
|
|
|
## Install
|
|
|
|
```sh
|
|
npm install import-fresh
|
|
```
|
|
|
|
## Usage
|
|
|
|
```js
|
|
// foo.js
|
|
let i = 0;
|
|
module.exports = () => ++i;
|
|
```
|
|
|
|
```js
|
|
const importFresh = require('import-fresh');
|
|
|
|
require('./foo')();
|
|
//=> 1
|
|
|
|
require('./foo')();
|
|
//=> 2
|
|
|
|
importFresh('./foo')();
|
|
//=> 1
|
|
|
|
importFresh('./foo')();
|
|
//=> 1
|
|
```
|
|
|
|
## Related
|
|
|
|
- [clear-module](https://github.com/sindresorhus/clear-module) - Clear a module from the import cache
|
|
- [import-from](https://github.com/sindresorhus/import-from) - Import a module from a given path
|
|
- [import-cwd](https://github.com/sindresorhus/import-cwd) - Import a module from the current working directory
|
|
- [import-lazy](https://github.com/sindresorhus/import-lazy) - Import modules lazily
|