Hi, how do I add dependencies when I need them in ...
# prisma-whats-new
j
Hi, how do I add dependencies when I need them in a function?
i
npm install dep
or
yarn add dep
And then
import dep from 'dep';
Functions are just normal JavaScript (or TypeScript) functions
Typically, you namespace imports in TS, though