staytuned_team
staytuned_team2mo ago

Resolving Dependencies for Local ESM NPM Packages in Deno

Hi Deno Community, I'm seeking guidance on the best approach for a setup involving a Deno application and a local, unpublished npm package using ESM. I'm having trouble with Deno automatically resolving the npm package's dependencies without explicit declarations in Deno's config file. Here's the project structure:
local_module/
├── package1/ (NodeJS package using CJS)
│ ├── index.js
│ └── package.json
│ └── package-lock.json
├── package2/ (NPM package using ESM)
│ ├── dist/
│ │ └── index.js
│ ├── src/
│ │ └── index.ts
│ ├── package.json
│ ├── package-lock.json
│ └── tsconfig.json
└── deno-app/ (The Main Deno Application)
├── main.ts
└── deno.json
local_module/
├── package1/ (NodeJS package using CJS)
│ ├── index.js
│ └── package.json
│ └── package-lock.json
├── package2/ (NPM package using ESM)
│ ├── dist/
│ │ └── index.js
│ ├── src/
│ │ └── index.ts
│ ├── package.json
│ ├── package-lock.json
│ └── tsconfig.json
└── deno-app/ (The Main Deno Application)
├── main.ts
└── deno.json
package2 Structure: * package2/src/index.ts:
import { v4 as uuidv4 } from 'uuid';
import { marked } from 'marked';

function hello(): string {
return "Hello from package 2 !" + uuidv4();
}

function processText(text: string){
const upper = text.toUpperCase();
return marked.parse(upper);
}

export { hello, processText };

import { v4 as uuidv4 } from 'uuid';
import { marked } from 'marked';

function hello(): string {
return "Hello from package 2 !" + uuidv4();
}

function processText(text: string){
const upper = text.toUpperCase();
return marked.parse(upper);
}

export { hello, processText };

* package2/package.json:
{
"name": "package2",
"version": "1.0.0",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc"
},
"dependencies": {
"lodash": "^4.17.21",
"marked": "^15.0.6",
"uuid": "^11.0.5"
},
"devDependencies": {
"@types/node": "^22.12.0",
"typescript": "^5.7.3"
}
}

{
"name": "package2",
"version": "1.0.0",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc"
},
"dependencies": {
"lodash": "^4.17.21",
"marked": "^15.0.6",
"uuid": "^11.0.5"
},
"devDependencies": {
"@types/node": "^22.12.0",
"typescript": "^5.7.3"
}
}

* deno-app/main.ts:
import * as p2 from "package2";

console.log(p2.hello());
console.log(p2.processText("test string to process"));

import * as p2 from "package2";

console.log(p2.hello());
console.log(p2.processText("test string to process"));

* deno-app/deno.json:
{
"imports": {
"package2": "../package2/dist/index.js",
},
"tasks": {
"run" : "deno run --allow-read main.ts "
}
}

{
"imports": {
"package2": "../package2/dist/index.js",
},
"tasks": {
"run" : "deno run --allow-read main.ts "
}
}

5 Replies
staytuned_team
staytuned_teamOP2mo ago
The Problem: With the above configuration, how can I configure the Deno app so that it does not need any imports for uuid, marked, or lodash? All I want to do is for it to import package2 but have all of its dependencies pulled and loaded as well. How can I make Deno automatically detect and resolve the dependencies of my local NPM package without me having to manually specify them in the deno.json? Steps Taken: 1. Ensured "type": "module" is set in package2/package.json. 2. Built package2 using tsc (npm run build). 3. Attempted to import package2 into Deno without listing package2 dependencies in deno.json. Thank you.
Bhaumin
Bhaumin2mo ago
@bartlomieju Please help here
bartlomieju
bartlomieju2mo ago
You need to use workspace to tell Deno that package1 and package2
bartlomieju
bartlomieju2mo ago
Deno
Workspaces and monorepos
In-depth documentation, guides, and reference materials for building secure, high-performance JavaScript and TypeScript applications with Deno
Bhaumin
Bhaumin2mo ago
it will work by that way with esm manner? thanks a lot @bartlomieju! it worked in deno workspace manner.

Did you find this page helpful?