Uzhanin Egor

Results 7 issues of Uzhanin Egor

## Current Behavior In projects, you can often find teams that are too long. Example here: ```json "run:dev": { "executor": "nx:run-commands", "options": { "command": "docker compose -f .docker/compose/docker-compose.services.yml -f .docker/compose/docker-compose.dev.yml...

### Description This PR adds features such as: ```bash ni - # install the last # uninstalled package ``` ```bash nun - # uninstall the last # installed package ```...

closes https://github.com/effector/eslint-plugin/issues/117 Added this rule to the future preset

And it would also be cool to add logging between microservices, nestjs has a good wrapper avobe rmq, grpc etc. https://docs.nestjs.com/microservices/basics

### To run example ```sh yarn nx start:nest example-log-frameworks-showcase curl -X GET http://localhost:3000 curl -X GET http://localhost:3000/pek ```

Related issue: https://github.com/denoland/deno_core/issues/885 Example usage: https://github.com/kurtexdev/kurtex/blob/main/crates/kurtex_core/src/deno/runtime.rs#L110 Look at the tests to understand in more detail what the functionality is about. The point is to update existing V8 modules with the...

```rust async fn run_js(file_path: &str) -> Result { let main_module = deno_core::resolve_path(file_path, env::current_dir()?.as_path())?; let mut js_runtime = deno_core::JsRuntime::new(deno_core::RuntimeOptions { module_loader: Some(Rc::new(TsModuleLoader)), startup_snapshot: Some(RUNTIME_SNAPSHOT), extensions: vec![runjs::init_ops()], ..Default::default() }); fs::write(file_path, "console.log(\"1\")")?; //...