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

How can I create a client side rendering react app with NX?

I'm trying to create a micro frontend project using react and module federation should I use NX ? if yes how can I create a client side rendering application with NX I tried SSR with NX and it worked but I need to do client side rendering too
0
votes
0 answers

How to serve a static json from the node devserver (Nx)

I am developing a React app with Nx. For reason out of my control I need to serve a static JSON file under a fix dedicated url while testing and debugging, but also I cannot influence the host part, so the fetch call goes to localhost:4200 (i.e. the…
onouv
  • 528
  • 1
  • 5
  • 12
0
votes
1 answer

NG8008 doesn't appear for Angular 16 with required input that isn't set

I just updated a bigger project, that uses NX to the latest version of Angular and as I love the required inputs I directly tried it out. While the IDE worked and showed an error, ng serve didn't show the error when a required input is set. Does…
StyrianDev
  • 254
  • 1
  • 8
0
votes
1 answer

NativeWind in an NX project with react native (expo) not working

I've followed the documentation on the NativeWind site to setup NativeWind with me React native application, but it doesn't seem to be working. I have several other react projects running with Tailwind (CRA and NextJS), but can't get this to…
Salman
  • 1,109
  • 3
  • 25
  • 55
0
votes
0 answers

Lerna watch not detecting changes on oracle linux machine

We are having a mono repo react app and trying to integrate lerna into it. Environment details OS - Oracle Linux OS Node version - 16.8.1 React version - 17.0.1 Lerna version - 7.1.1 While running lerna watch command , its not detecting changes to…
Karthik
  • 1
  • 1
0
votes
1 answer

Examples about using the command 'nx exec'

Any examples on how to use nx exec command with NX framework? I would like to run a command in command line which is similar to nx exec --command RD D:\test1 -p commontests but using nx exec always throws me the error ''' nx exec requires passing in…
0
votes
0 answers

compiled nx-react-app project shows environment variables in plain text

When I compile my project in react on monorepo nx for production. The file contains environment variables in plain text. Does anyone know how to fix this problem? I tried using cmd-env to load them. I tried using environments.ts to prod by sexting…
0
votes
1 answer

how to import from libs in NX

I have Microservice with Nestjs and Nx this is project structure project │ │ └───apps │ │ gateway │ │ auth │ │ └───libs └───common now I want to import some module from libs/common in gateway import { RMQ_SERVICES } from…
morteza mortezaie
  • 1,002
  • 14
  • 37
0
votes
0 answers

Error ERR_OSSL_EVP_UNSUPPORTED running tests after updating Angular, Electron in NX workspace, how to fix it?

I have an NX workspace where I use Angular, Electron and Nest. I recently tried to update my Angular and Electron separately because the nx migrate command wasn't working for me. However, after the update, I have not been able to run my tests since…
Frmasda
  • 146
  • 8
0
votes
0 answers

Can't read variable from file .env in nx workspace

I have been tried to build a node app with nx workspace, however, the contents of the variable in the .env file cannot be read. I run this node app with this command: node dist/apps/bot/main.js I tried to debug the variable. here my code: import…
0
votes
0 answers

Monorepo didn't compile my file inside the folder

hi guys i want to ask to you all, i have an issue when doing nx serve myapp, when i run this command i think the command not compile all my folder inside the src folder? my structure folder is like in the images, so when nx serve is done i got an…
werich1
  • 9
  • 4
0
votes
1 answer

Cypress tries to access cypress.config.js instead of .ts and tries to locate a file from a mixed up path

Within an NX mono repo I have an Angular app on which I run component tests via Cypress. I sporadically keep getting the following error in the cypress app, when a test reruns after code changes in the testing code: Your configFile threw an error…
0
votes
0 answers

NX applications blocks thread when accessing store `micro-frontend` apps

I have an issue with my NX applications. Right now i have 3 apps. One is responsible from upload, one is responsible for export and last is responsible for store. To run all those apps I am using NX. Right now i have an issue, that every time I want…
shivetay
  • 315
  • 4
  • 14
0
votes
0 answers

NGINX Reverse Proxy, copy to Nginx fails. no such file or directory

NGINX keeps failing with --from=stage-1 /usr/src/dist/apps/admin-panel /usr/share/nginx/html no such file or directory FROM node:18.10-alpine as stage-1 WORKDIR /usr/src/app RUN npm install -g @angular/cli RUN npm install -g @nrwl/cli COPY…
0
votes
0 answers

npm ci with nx version 2 build | ERROR: "Expected:[ 1 ] Found: [ 2 ]"

When I use npm ci --cache .npm --prefer-offline --no-audit --ignore-scripts everything is ok. But if I use ng build after this I will catch error Invalid format version detected - Expected:[ 1 ] Found: [ 2 ] npm ERR! code ELIFECYCLE npm ERR! errno 1…