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

Import .scss file into typescipt file in agnular app

I have .scss file. I imported it inside .ts file but the app can't get built. I have _export.scss and _export.scss.d.ts files. The error is; ./apps/appe/src/_export.scss:1:0 - Error: Module parse failed: Unexpected token (1:0) File was processed…
Murat Can OĞUZHAN
  • 735
  • 11
  • 19
1
vote
1 answer

NX and Jest don't find all my tests that end with spec.tsx

Hi I am new with nx and I was kinda confuse with it. I have multiple tests in my projects but for some reason jest doesn't find any of it. They do have the extension spect.tsx and I wanted to know what part of the the code is use to make it able to…
MrBigboka
  • 409
  • 1
  • 4
  • 12
1
vote
0 answers

How do I ensure that tslib, class-transformer, and @nestjs/platform-socket.io are included in my nx production build?

When I build my nestjs application with nx to ship it to elasticbeanstalk via pulumi, it does not include follwing packages in generated package.json tslib class-transformer @nestjs/platform-socket.io Is there a way to bundle them correctly or…
1
vote
1 answer

Angular migration 12 to 14 running nx serve failed

After migration angular version from 12 to 14 according this guide, I'm can't run my app. after successful build, I'm running this command: nx serve and nothing happend. what am i missing?
Naor Yael
  • 69
  • 4
1
vote
0 answers

NX MCD and Beckhoff PLC connection

Hei everyone! I am working on a project in TwinCAT3 and want to simulate how it would behave in real world. I am trying to control my SolidWorks model using HMI in a project. I found that it is possible to make a connection between NX MCD and…
1
vote
0 answers

Keep edge attributes during DFS in NetworkX

I have a DiGraph where all the edges have a size attribute. However, when I call G_dfs = nx.dfs_tree(G, source='root') the size attribute is no longer accessible. Is there a straightforward way to keep the size attribute even after the DFS?
1
vote
1 answer

WebStorm and NX Console for Angular app has another interface than in VS Code?

I installed the NX Console extention in WebStorm (Settings => Plugins => Nx Console Idea and then nx-webstorm plugins). Then I got: The question is - is there in WebStorm some little NX pane like in VS Code?: Or in WebStorm it's just it is that…
Tatyana Molchanova
  • 1,305
  • 5
  • 12
  • 23
1
vote
0 answers

How to access environment variables from a React lib project on NX?

I created a global .local.env file and added a couple of variables. I'm able to access them from apps/my-app but not from libs/my-lib. Is there any way to do it?
jhonny17
  • 21
  • 5
1
vote
0 answers

Cypress component testing error Module parse failed: Unexpected token

Follow up this question I am using NX 14.5.1 and cypress 10.2.0. I tried another way by creating a custom webpack (I catched from "node_modules/@nrwl/react/plugins/webpack.js") and adding "process.env" into it. const webpack =…
1
vote
1 answer

Nx Framework - TS2307 During compilation when importing from non-root

I am trying to migrate to Nx and setup a monorepo. Currently running into issues with path alias imports. @backend/kernel": ["libs/kernel/src/index.ts"], @backend/kernel/*": ["libs/kernel/src/*"] When issuing imports of the form import { Something…
muffe
  • 47
  • 7
1
vote
0 answers

Storybook static build asset issue

I have an issue only when I generate the static bundle of my storybook I work with a monorepo (using nx) and I have a scss variable : $icon-path: "/assets/images"; I use this variable to load my asset in my scss file and it works fine with local dev…
Shining
  • 425
  • 6
  • 20
1
vote
1 answer

nx webpack css-loader issue

const { merge } = require('webpack-merge'); const sass = require('sass'); module.exports = (config, context) => { return merge(config, { module: { rules: [ { test: /\.sass$/i, …
4rmr3d1
  • 79
  • 4
1
vote
3 answers

Testing with Nx, Jest and Angular - Can't find library when running tests

I have an nx monorepo, which consists of two apps (client, server) and 5 libs (client-core, platform-core, etc). I pull the libraries into the Angular (client) application by setting the paths in the tsconfig.json. "paths": { …
Free Mind
  • 9
  • 2
1
vote
1 answer

Storybook TypeError: Cannot read properties of undefined (reading 'id')

I am trying to configure a storybook story for a component that has injection with ng2-signalr service. import { NameComponent } from './name.component'; import { SignalRConfiguration, SignalRModule } from 'ng2-signalr'; export function…
Ebram
  • 1,042
  • 1
  • 13
  • 26
1
vote
0 answers

NX workspace NestJS - loading DTO classes from libraries

I have NestJS api in NX workspace. I created library "model" with user.ts: export interface User{ name: string } export interface UserDto extends User { email: string } user.controller.ts: import { UserDto } from…
bluray
  • 1,875
  • 5
  • 36
  • 68