Questions tagged [nomachine-nx]

NoMachine NX is a remote access, hosted virtual desktop application.

NoMachine NX is an enterprise-class solution for secure remote access, hosted virtual desktop deployment, and application delivery built around the self-designed and self-developed NX suite of components.

Thanks to its outstanding compression, session resilience and resource management and its integration with the powerful audio, printing and resource sharing capabilities of the Unix world, NX makes it possible to run any graphical application on any OS across any network. Via NX, accessing remote desktops, servers and applications, whatever their location, is just as fast, easy and secure as if you were sitting in front of them.

Together with easy-to-use management, deployment, and monitoring tools, NoMachine makes it possible to transform any traditional desktop computing environment into a centrally managed, globally accessible, virtual desktop infrastructure.

243 questions
0
votes
1 answer

NX configuration: After NX upgrade getting: ` > NX Unable to resolve @nx/node:webpack.`

Running basic express app, nothing crazy, everything worked on NX 15. After upgrade and standard: nx migrate latest nx migrate --run-migrations rm -rf node_modules npm i getting this error: > nx run api:serve --port 3000 --inspect > NX …
697
  • 321
  • 4
  • 16
0
votes
0 answers

nx serve api : Cannot find module

I want run my backend api project with : nx serve api this is my files : project.json : { "name": "api", "$schema": "../../node_modules/nx/schemas/project-schema.json", "sourceRoot": "packages/api/src", "projectType": "application", …
0
votes
0 answers

How to load host application with all it's remotes in NX Monorepo?

To start host with remotes I use --devRemotes option. For example: nx serve my-console --devRemotes=my-assets,my-dashboard Is there a way to serve start my-console with all of it's remotes in "dev" mode? I tried to search NX documentation and SO,…
0
votes
3 answers

Angular Material Datepicker does not work within Nx-Project

Stackblitz right here: Stackblitz I have a nx project with angular and I use angular material for my ui components. I have this issue where I cannot implement a mat-datepicker in my code. Looks like this: (default example from here
TeePlunder
  • 1
  • 1
  • 2
0
votes
1 answer

How to route from one nx app to another nx app on a different localhost port with react router dom

I have a login page in an NX app called admin, when the login is successful I want to redirect the user to my other NX app terminal running on a different port. Admin is running on localhost:4200 and terminal on localhost:4100. I already tried to…
Fr4sha
  • 1
0
votes
0 answers

Export SCSS files from a shared lib in NX so they can be used in apps

I have a Monorepo build with NX v16.1.0. There are one React app and one shared-ui lib inside. My goal is to find a way to export scss files from the shared-ui folder so I can use them in my client's applications .scss files. Example: In a CSS…
XxXtraCookie
  • 171
  • 2
  • 11
0
votes
1 answer

NX SERVE ::To load an ES module, set "type": "module" in the package.json or use the .mjs extension

i use NX for my project. When i run : nx serve api i have this error : `0:07:38 AM - Starting compilation in watch mode... 10:07:41 AM - Found 0 errors. Watching for file changes. Debugger listening on…
dudoum
  • 3
  • 2
0
votes
0 answers

How to build different apk from root capacitor.config.ts for 2 ionic projects in nx workspace?

Right now is in root folder there is a single capacitor.config.ts file which includes the configuration for one project only. So if I run './gradlew assembleDevRelease ’ command, it will generate apk for the specified project only. In local I can…
0
votes
0 answers

How to set up NX for AWS lambdas with CDK?

I have a NX monorepo with React app and CDK setup using @ago-dev/nx-aws-cdk-v2. I'm trying to set up some lambdas in the project but can't find any generators for lambdas with cdk. There are couple but they all use Serverless framework. Anyone got…
szczocik
  • 1,293
  • 1
  • 8
  • 18
0
votes
1 answer

NX EACCES: permission denied

I am trying to start my nx framework application but i couldn;t getting an error NX EACCES: permission denied, open '/Users/hariharan.ravichandran/.config/fork-ts-checkerrc' Pass --verbose to see the…
harry
  • 11
  • 2
0
votes
0 answers

NX node application: generated dist/.../package.json file does not include a "dependencies" section at all

I have a NX monorepo I created a new CLI node.js app called nodeapp1 app using command: nx g @nrwl/node:application nodeapp1 When running nx serve nodeapp1 -or- nx build nodeapp1, it does generate a package.json file:…
LaVache
  • 2,372
  • 3
  • 24
  • 38
0
votes
0 answers

The "dryRun" flag means no changes were made

When I try to create a component via Nx console in Angular it shows like below: NX Generating @nrwl/angular:component CREATE src/app/parameterpage/parameterpage.component.css CREATE src/app/parameterpage/parameterpage.component.html CREATE…
0
votes
2 answers

How to create an Angular application using Vite?

I want to use Vite for creating an Angular app with basic routing, minimal options, and no testing files and open in port 5000 Searched all over and not got.
ABHIJITH
  • 29
  • 2
0
votes
0 answers

How should I set up the styling in an NX project that has 2 NextJS apps, so that each app can import shared components but give it custom style?

I have set up an NX project that consists of 2 very similar NextJS apps. These 2 NextJS apps will share a lot of code, especially components, but they will have their own styling of the components. The shared components will be in a separate…
Weblurk
  • 6,562
  • 18
  • 64
  • 120
0
votes
0 answers

How can I run a custom babel plugin that lives in the same NX monorepo?

Is there a way to run a post-build action(target) in a NX monorepo that will run a babel plugin stored inside that same monorepo, for transforming some values in prebuilt javascript code? I'm trying something like this: project.json: "post-build":…