Industrial
Industrial
Explore posts from servers
DDeno
Created by Industrial on 11/2/2023 in #help
Deno.serve().shutdown doesn't exist?
Ok, it works with unstable
7 replies
DDeno
Created by Industrial on 11/2/2023 in #help
Deno.serve().shutdown doesn't exist?
Seems like https://deno.land/api@v1.38.0?s=Deno.serve returns a Deno.HTTPServer not a Deno.Server, which isn't available in the types in VSCode
7 replies
DDeno
Created by Industrial on 11/2/2023 in #help
Deno.serve().shutdown doesn't exist?
okay
7 replies
DDeno
Created by Industrial on 9/7/2023 in #help
Error running Apollo example (on latest version)
Actually, it's giving the same error with the example code/version
3 replies
DDeno
Created by Industrial on 9/7/2023 in #help
Error running program that uses `fp-ts` from npm (`Is a directory (os error 21)`)
I would rather use npm: going forward, seeing as it works on deno deploy now.
4 replies
DDeno
Created by Industrial on 9/7/2023 in #help
Error running program that uses `fp-ts` from npm (`Is a directory (os error 21)`)
It works with esm.sh
4 replies
DDeno
Created by Industrial on 6/5/2023 in #help
File Permissions on Deno.FileInfo
@jaboolo thanks!
5 replies
DDeno
Created by Industrial on 10/1/2022 in #help
How do I patch a std api?
7 replies
DDeno
Created by Industrial on 10/1/2022 in #help
How do I patch a std api?
If i get that + a CSS-in-JS approach for Fresh then I can start using Fresh for Serious Business (tm) 🙂
7 replies
DDeno
Created by Industrial on 10/1/2022 in #help
How do I patch a std api?
Almost have React component tests with React Testing Library working 🤞
7 replies
DDeno
Created by Industrial on 10/1/2022 in #help
How do I patch a std api?
I did it like this:
"https://deno.land/std@0.158.0/node/vm.ts": "./lib/std/node/vm.ts",
"https://deno.land/std@0.158.0/node/vm.ts": "./lib/std/node/vm.ts",
import * as vm from "std/node/vm.ts";

const isContext = () => false;

export default {
...vm,
isContext,
};
import * as vm from "std/node/vm.ts";

const isContext = () => false;

export default {
...vm,
isContext,
};
7 replies