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
0 answers

NX multiple apps with Dockerfile

I created two apps with NX. An admin frontend as well as a website. Both of these apps have a separate Dockerfile and nginx-default.conf which looks kind of like this: # Build the whole nx workspace FROM node:lts-alpine AS builder WORKDIR…
jksevend
  • 418
  • 5
  • 18
0
votes
0 answers

Angular.json Invalid in Nx Workspace

I recently migrated a usual Angular Application into an Nx Workspace. Badly, I always get an error when trying to run any command with ng. Running it with nx instead does not work either. ng g c Workspace config file cannot be loaded:…
Stefan
  • 1,122
  • 3
  • 14
  • 38
0
votes
1 answer

Yarn install error: NX Cannot read properties of undefined (reading 'endsWith')

I am trying to setup circeci in NX workspace for react app. On the step where is executed yarn install I get next error: error…
Mark James
  • 338
  • 4
  • 15
  • 43
0
votes
1 answer

How to build a standalone executable script from an Nx project?

I have an Nx project that has a backend module that I'd like to deploy. My problem is that after compilation the node_modules folder becomes huge and Heroku rejects my deployment. I tried deleting the node_modules folder because I thought that after…
Adam Arold
  • 29,285
  • 22
  • 112
  • 207
0
votes
1 answer

How to add custom headers to nx react app?

I need add to my react app 'Cross-Origin-Embedder-Policy': 'require-corp', 'Cross-Origin-Opener-Policy': 'same-origin', How i can do it? I'm use monorep with nx.
0
votes
1 answer

How can I install ng-bootstrap to an nx mono repository?

When trying to install ng-bootstrap into a multi project mono repo using Nx I get the following error: npx ng add @ng-bootstrap/ng-bootstrap --project=web-app The add command requires to be run in an Angular project, but a project definition could…
Markus
  • 2,214
  • 3
  • 19
  • 32
0
votes
1 answer

vue as nx plugin and using environment variables (nx-plus/vue)

I've migrated vue app to nx, all is fine now except of one thing - previously, .env file was used in both dev and production environments, during development as well as build, vue-cli-service took care of that. Now I struggle with app build - it…
akkonrad
  • 1,043
  • 1
  • 10
  • 25
0
votes
0 answers

vue: getCurrentInstance() function returns instance with empty data property

I've got a component that was used in the column of ag-grid-community. After moving vue app from lerna to NX, the component works differently - the .data property, that contained some data in lerna, is empty now. No significant changes were made to…
akkonrad
  • 1,043
  • 1
  • 10
  • 25
0
votes
1 answer

Problems when migrating to latest nx workspace

I´m facing the same issue since I migrate my nx workspace to the latest version. The workspace contains an angular+nestjs aplications. Everytime I try to install something that i need to install I´m facing with this. I try with --legacy-peer-deps…
rzc
  • 1
  • 1
0
votes
2 answers

add a plugin from a library in tailwind

I am using react, nx, tailwind to create a monorepo with multiple config What I would like to achieve is one config for the whole repo one config per project one plugin that extend the project config on each lib. I currently have this…
Bobby
  • 4,372
  • 8
  • 47
  • 103
0
votes
1 answer

NX workspace angular - generate component in library

I don't know how to generate component to library in nx workspace. Here is my library structure. Libraries are in folders (for example libs/features, libs/shared). I would like to create component in library orders (libs/features/orders). nx g…
bluray
  • 1,875
  • 5
  • 36
  • 68
0
votes
0 answers

Kill a process when it gives certain logging output (zsh/mac)

I have a long running build process that I want to terminate after a certain log output is given. What i normally do is just watch the process running and when the log entry appears I control-c. Is there a better way to do this, im a Windows guy so…
Matt
  • 11
  • 3
0
votes
1 answer

NX Nrwl build package Version number of Apps/Libs is allways 0.0.1

How to set the version of an NX App/Library build. If i ran nx build or nx affected or nx build:MYAPP or Lib (if publishable) the version end allways as 0.0.1 and is not in sync with the version if the main package.json which is even not clever if…
0
votes
1 answer

How to create module/controller of NestJs in a mono-repo with Nx?

I'm trying to use the Nx monorepo approach. I've created a project with Angular & NestJs: npx create-nx-workspace --preset=angular-nest But now I'm trying to create modules. On a standalone NestJs project, I would usually do something like: nest g…
J4N
  • 19,480
  • 39
  • 187
  • 340
0
votes
0 answers

Angular + Nx: "NullInjectorError: No provider for environment" in service .spec file

In the Nx workspace we are working on, we are sharing the app environment variables with other Nx libs via InjectionToken via the AppModule. In the app.module.ts: import { environment } from '../environments/environment'; @NgModule({ providers:…
user2268244
  • 244
  • 1
  • 15