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

Create sub modules for importing from libraries in NX similar to @angular/material

I have moved my code successfully into libraries in my NX workspace. However, I have some libraries that are rather large (utilities) with a number of small functions. As such, I would like to be able to break the import into smaller modules,…
Steven Scott
  • 10,234
  • 9
  • 69
  • 117
3
votes
2 answers

Buildable libraries cannot import or export from non-buildable libraries (eslint)

I am getting above error when i import the interface from one of the library: import { DetailsProps } from '@vite/prop-types'; //error import styles from './header.module.less'; const initailDetails: DetailsProps = { name: 'Arif', city:…
3gwebtrain
  • 14,640
  • 25
  • 121
  • 247
3
votes
0 answers

Nx Angular: Jest encountered an unexpected token

My main app is giving me this error after testing. I have seen this issue before but did not find any solution to it. I have read somewhere that it is because of importing third party library but did not know how to fix it The failing message: ●…
Alex
  • 41
  • 2
3
votes
2 answers

NX Unable to complete project graph creation. Worker stopped with exit code: 1

I have an Angular project and I am using nx. When I run npm install I get this error: > NX Nx Daemon was not able to compute the project graph. Log file with the error: ...\node_modules\.cache\nx\d\daemon-error.log Please file an issue at…
Alireza Ahmadi
  • 8,579
  • 5
  • 15
  • 42
3
votes
2 answers

How to host assets with Module Federation on Angular and Nx monorepo

I need to make assets (png, svg images, fonts) from Angular remote applications available also in host applications of Webpack Module Federation. Below are long steps to reproduce - not necessary to read if you know the solution…
3
votes
5 answers

How to host NextJS app on 0.0.0.0:3000 with nrwl/next (not localhost:3000)

I'm trying to host my app on 0.0.0.0:3000 and not localhost. However each time I run the nx serve career --port=3000 --host=0.0.0.0 The app is hosted on: tcp6 0 0 :::3000 :::* LISTEN 9112/node Instead…
Salman
  • 1,109
  • 3
  • 25
  • 55
3
votes
0 answers

Nx monorepo - cacheDirectory pointing to environment variable

NX comes with a caching feature, config is done in the nx.json file I would like to use environment variable to set the cacheDirectory is it possible to use a system environment variable in the path to cacheDirectory ? is it possible to use a…
Deunz
  • 1,776
  • 19
  • 32
3
votes
1 answer

Angular build throwing error (JSON.parse(stripJsonComments(content)))

I am using angular nx with nestjs. When project is cloned and run yarn command on it, it builds successfully but when even I install any package and compile the project. it throws the…
3
votes
0 answers

How to add an external library to nx manually

I am using nx.dev for a new application. I generated a library for my application, now I want to use this library adding in NX applications how to import library in project NX
2
votes
2 answers

How can I fix ChunkLoadError for signalr

I have an issue when running my nx site locally, where any federated app that uses signalR has started throwing a ChunkLoadError. I've tried changing the version of signalR, reloading, clearing cache and running my federated app individually. The…
2
votes
2 answers

TypeError: (0, _local.default) is not a function when using next/font/local in Jest

I am developing a UI library using MUI, React, and TypeScript, with Nx as the build system. For testing purposes, I am using Jest. However, I encountered an error when trying to add a font to my project following the instructions provided in the…
2
votes
0 answers

I want to make nx project with angular universal ang nestjs server rendering

when i run this nx generate @nxarch/ng-nest:init --ssrApp=eulembro-client --serverApp=eulembro-server i get this error nx Bootstrap call not found
2
votes
1 answer

nx workspace angular monorepo throws error while creating new app

I am creating new angular monorepo application, I run following command: npx create-nx-workspace explorer --preset=angular but I am getting following error once it executes: √ Installing dependencies with npm × Creating your workspace in explorer …
Vikas Kad
  • 1,013
  • 1
  • 18
  • 38
2
votes
1 answer

Migration scripts for nx nestjs typeorn

I am working with nx with typeorm and nestjs and I am Unable to generate migration Here is my migration script db.config.ts export const dataSourceOptions: DataSourceOptions = { type: 'postgres', host: process.env.DATABASE_HOST, port:…
2
votes
0 answers

How to set up Azure deployment pipeline to App Service with Nx and Express

I am struggling to have the deployment of an Express app succeed. I have an Nx Monorepo set up with Azure Repos. In this monorepo, I have 4 projects and I am trying to deploy one that uses Express. I can't seem to find anywhere how to do this and…
1 2
3
16 17