Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
> ⚠️ The Deno plugin is deprecated and will no longer receive updates. We are committed to providing high-quality tooling to community, and we no longer have the capacity to keep this plugin updated.
⚠️ The Deno plugin is deprecated and will no longer receive updates. We are committed to providing high-quality tooling to community, and we no longer have the capacity to keep this plugin updated.
Deno is a JavaScript runtime that provides great tooling and hassle-free deployment.
The following guides show you how to create a new Deno project and deploy to either Deno Deploy or Netlify.
Create a new Nx workspace if you don't already have one.
npx create-nx-workspace@latest deno-demo --preset=@nx/deno:preset
Now, you can go into the deno-demo
folder and start development.
cd deno-demo
deno task start
You can also run lint, test, and build scripts for the project.
deno task lint
deno task test
deno task build
Note: Change deno-demo
to any project name you want.
You can add Deno to any existing Nx workspace.
First, install the plugin:
npm install -DE @nx/deno@latest
You can create additional Deno apps
npx nx g @nx/deno:app
You can run npx nx serve <your-Deno-app-name>
and see the sample web server on htts://localhost:8000
You can also run test, lint, and build as tasks for <your-Deno-app-name>
npx nx serve <your-Deno-app-name>
npx nx test <your-Deno-app-name>
npx nx lint <your-Deno-app-name>
npx nx build <your-Deno-app-name>
Building/Bundling is an optional step in Deno so you don't have to build when using @nx/deno, but it can be useful to bundle the code into a single file for easier portability if you so need it.
npx nx g @nx/deno:lib
Deno libraies only come with lint/test targets to run.
npx nx test <your-Deno-library-name>
npx nx lint <your-Deno-library-name>
You can easily consume these libraries with their import aliases that are listed in the import_map.json
in the root of the workspace.
The executors have a denoConfig
option that allows you to pass in a deno config. This defaults to the generated deno.json
in the project root of each generated deno project.
Within this file you can control various aspects of Deno, such as lint and test settings.
Read more about the deno.json
config file
By default this config uses the import_map.json
in the root of the workspace.
This file contains the import alias to your other local Deno projects that you can use across other projects.
FAQs
> ⚠️ The Deno plugin is deprecated and will no longer receive updates. We are committed to providing high-quality tooling to community, and we no longer have the capacity to keep this plugin updated.
The npm package @nx/deno receives a total of 17 weekly downloads. As such, @nx/deno popularity was classified as not popular.
We found that @nx/deno demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.