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

always get undefined in nx monorepo build

I learning monorepo with nx, and I submodule my existing repo and put it in my apps folder, and i setting up with javascript style using nx generate with --js, because my existing file use javascript and HapiJS. then I create a dockerfile to run my…
werich
  • 1
  • 4
0
votes
0 answers

A platform with a different configuration has been created. Please destroy it first

A platform with a different configuration has been created. Please destroy it first. getting above error when i have 2 angular bundled js files in same page. Project Architecture: NX Angular under apps i have created 2 different apps. with one app i…
user12428054
  • 135
  • 3
  • 9
0
votes
0 answers

Docker + PNPM + NX issue

I have a troubleshoot with Docker and a monorepo based on PNPM Workspace + NX. It simply doesn't compile. I get the message : => ERROR [ 9/12] RUN pnpm build-schema …
pierred69
  • 59
  • 5
0
votes
0 answers

How to disable the prompt "Press the disconnect button to disconnect the running session." in NX/NoMachine

In one of my NoMachine installation, I'm prompted "Press the disconnect button to disconnect the running session. You will be able to reconnect the session at later time. Press the terminate button to exit the session and close all the running…
brian
  • 265
  • 1
  • 9
0
votes
1 answer

How to test all the projects or libraries in NestJS (nx)?

We have setup a NestJS project with multiple libraries in it using Nx. We are able to run tests of projects/libraries independently like, npx nx test lib1 --coverage This works fine, but we have several libraries and modules, we want to run test…
Kamalakannan J
  • 2,818
  • 3
  • 23
  • 51
0
votes
0 answers

Create new Nx Mono-repo for existing Angular 14 and Vue3(Vite) apps

Is it possible to create a new Nx mono-repo for two existing Apps, one in Angular 14 and the other in Vue3 using Vite? Another bonus would be to have an Asp.Net application also in the same mono-repo. From what I have seen and attempted; it was hard…
Sherif Botros
  • 105
  • 1
  • 7
0
votes
0 answers

How do you export a stylesheet and locally refer to the stylesheet from that local library? - NX Angular Monorepo with Library

Before you get into the following, I am simply asking if it's possible to reference an scss stylesheet from a library project in your main project (monorepo). In .ts files we would see import the libraries module through something like: import {…
Kota
  • 157
  • 7
0
votes
0 answers

Shared NGXS state/action issue with NX in Cypress

I am having the following scenario: NX with common app, app1 and app2. NGXS with app1-state, app2-state and a common state. So that app1 invokes action from app2 and app2 updates common state. App1 then uses selector to get common state…
0
votes
1 answer

NX command to build NESTJS api, is not found if I set the NODE_ENV variable to production on Heroku

I am using an NX mono repository for my project. It contains the following three applications: a web app (NextJS), an API service (NestJS) a mobile app (React Native) I was trying to deploy the backend code to Heroku and I am facing the issue of…
mhamza
  • 23
  • 5
0
votes
0 answers

Exported variable 'X' has or is using name 'Y' from external module "../../Z" but cannot be named

My Code Same: import { A B C D } from './lib/B'; const plugin = { init: (args: B) => { ReactDOM.render( React.createElement( _A of B:args.A, _B of B:args.B, .... ) ) } } export { plugin as default, B…
0
votes
0 answers

Angular Nativescript code sharing with nx - how to structure dependencies

I'm getting a bit lost in the structure of things (and firmly believe that if its that complicated, it shouldn't be that way, but that's another discussion). Basically, we have an Angular web app and a Nativescript app in an NX workspace. The main…
rita
  • 535
  • 1
  • 3
  • 15
0
votes
1 answer

NX typescript library - package.json wrong "main" value - index.ts instead of index.js

I've created an NX workspace using npx create-nx-workspace --name libtest --preset angular --style scss --appName demo --nxCloud false code libtest Then I created a TypeScript library using nx add @nrwl/node nx generate @nrwl/js:library…
Pieterjan
  • 2,738
  • 4
  • 28
  • 55
0
votes
2 answers

Property 'trace' does not exist on type 'typeof NxWelcomeService'.ts(2339)

I am migrating my project to Nx Monorepo and it happens that libraries that worked fine in my project outside of Nx do not recognize public methods here. It doesn't happen only with libraries, I have created a simple component and service to test…
Nestor
  • 1
  • 1
0
votes
1 answer

How to find the project root when creating an nx plugin

I am currently building my first nx plugin and I am trying to add a target to the project.json and also add a file to the root of the project. I am currently passing the project name as a string to my generator. export default async function (tree:…
Patrick
  • 349
  • 1
  • 7
  • 15
0
votes
1 answer

Why nx is throwing error when running storybook

I'm trying to run my custom react component library through storybook with nx. Expected Result Whenever I run nx run my-lib:storybook command the storybook will open successfuly. Actual results After running the command I see the following…
Netanel Vaknin
  • 856
  • 2
  • 8
  • 21