smartspawn/readme.md

121 lines
5.3 KiB
Markdown
Raw Permalink Normal View History

2024-04-14 16:21:57 +00:00
Given the provided files and their contents, the comprehensive documentation for using **`@push.rocks/smartspawn`** with TypeScript and in a manner that provides thorough examples and descriptions of features and scenarios is extensive. However, I'll outline a concise and informative usage guide that can serve as a helpful starting point. For an in-depth understanding and a complete reference to all features, further reading, exploration, and experimentation with the library are recommended.
# @push.rocks/smartspawn
2022-07-28 21:03:29 +00:00
smart subprocess handling
2024-04-14 16:21:57 +00:00
## Install
To install `@push.rocks/smartspawn`, open your terminal and run the following command:
```bash
npm install @push.rocks/smartspawn
```
This command fetches the package from npm and adds it to your project's dependencies.
2022-07-28 21:03:29 +00:00
## Usage
2024-04-14 16:21:57 +00:00
This guide uses TypeScript and ESM syntax to demonstrate how to utilize `@push.rocks/smartspawn` for smart subprocess handling in your application.
First, ensure that your TypeScript environment is set up to support ECMAScript modules (ESM). Your `tsconfig.json` should include:
```json
{
"compilerOptions": {
"module": "ESNext",
"target": "ESNext",
"moduleResolution": "node"
}
}
```
### Starting and Stopping a Simple Thread
`ThreadSimple` class allows you to manage subprocesses effectively. Here's how to start and stop a simple thread:
```typescript
// Import the necessary components from the library
import { ThreadSimple } from '@push.rocks/smartspawn';
// Define a function that creates, starts, and stops a thread
async function demonstrateThreadSimple() {
// Create an instance of ThreadSimple
const mySimpleThread = new ThreadSimple('./path/to/worker.js');
// Start the thread
await mySimpleThread.start();
console.log('Thread has started.');
// Stop the thread
await mySimpleThread.stop();
console.log('Thread has stopped.');
}
2022-07-28 21:03:29 +00:00
2024-04-14 16:21:57 +00:00
// Call the function to demonstrate its functionality
demonstrateThreadSimple();
```
The `./path/to/worker.js` should be the path to your worker script that you want to execute in a separate process.
2022-07-28 21:03:29 +00:00
2024-04-14 16:21:57 +00:00
### Wrapping Processes
2022-07-28 21:03:29 +00:00
2024-04-14 16:21:57 +00:00
`smartspawn` also provides functionality to wrap subprocesses, allowing you to modify or set up an environment before execution. Here's how to wrap and unwrap subprocesses:
2022-07-28 21:03:29 +00:00
2024-04-14 16:21:57 +00:00
```typescript
import { startSpawnWrap, endSpawnWrap } from '@push.rocks/smartspawn';
2022-07-28 21:03:29 +00:00
2024-04-14 16:21:57 +00:00
// Start a wrap
startSpawnWrap('path/to/script', ['arg1', 'arg2'], { ENV_VAR: 'value' });
console.log('Subprocess wrapped.');
2022-07-28 21:03:29 +00:00
2024-04-14 16:21:57 +00:00
// End the wrap when it's no longer needed
endSpawnWrap();
console.log('Subprocess unwrapped.');
2022-07-28 21:03:29 +00:00
```
2024-04-14 16:21:57 +00:00
### Advanced Thread Management
`@push.rocks/smartspawn` integrates with the `threads` package to provide advanced threading capabilities. Here's a brief example showing how you might utilize it for more complex scenarios:
```typescript
import { Thread, spawn, Worker } from 'threads';
2022-07-28 21:03:29 +00:00
2024-04-14 16:21:57 +00:00
async function advancedThreadExample() {
const thread = await spawn(new Worker('./worker'));
2022-07-28 21:03:29 +00:00
2024-04-14 16:21:57 +00:00
const result = await thread.doWork();
console.log(`Result from thread: ${result}`);
await Thread.terminate(thread);
}
advancedThreadExample();
2022-07-28 21:03:29 +00:00
```
2024-04-14 16:21:57 +00:00
Ensure you explore the `threads` documentation for a more detailed understanding of creating workers and communicating between the main process and threads.
### Conclusion
The `@push.rocks/smartspawn` package simplifies managing subprocesses in your Node.js applications, offering straightforward APIs for starting, stopping, and communicating with child processes. Whether you need to execute a simple script in the background or leverage sophisticated multi-threading capabilities, `smartspawn` provides the tools necessary to implement these features efficiently and robustly.
Remember, the examples above are starting points. Review the source code, tests, and type declarations for a comprehensive understanding of everything `@push.rocks/smartspawn` and its integrated packages can do. Experiment with the library in your projects to best learn how to utilize its full potential in real-world applications.
## License and Legal Information
This repository contains open-source code that is licensed under the MIT License. A copy of the MIT License can be found in the [license](license) file within this repository.
**Please note:** The MIT License does not grant permission to use the trade names, trademarks, service marks, or product names of the project, except as required for reasonable and customary use in describing the origin of the work and reproducing the content of the NOTICE file.
### Trademarks
This project is owned and maintained by Task Venture Capital GmbH. The names and logos associated with Task Venture Capital GmbH and any related products or services are trademarks of Task Venture Capital GmbH and are not included within the scope of the MIT license granted herein. Use of these trademarks must comply with Task Venture Capital GmbH's Trademark Guidelines, and any usage must be approved in writing by Task Venture Capital GmbH.
2022-07-28 21:03:29 +00:00
2024-04-14 16:21:57 +00:00
### Company Information
2022-07-28 21:03:29 +00:00
2024-04-14 16:21:57 +00:00
Task Venture Capital GmbH
Registered at District court Bremen HRB 35230 HB, Germany
2022-07-28 21:03:29 +00:00
2024-04-14 16:21:57 +00:00
For any legal inquiries or if you require further information, please contact us via email at hello@task.vc.
2022-07-28 21:03:29 +00:00
2024-04-14 16:21:57 +00:00
By using this repository, you acknowledge that you have read this section, agree to comply with its terms, and understand that the licensing of the code does not imply endorsement by Task Venture Capital GmbH of any derivative works.