ehsueh - Hi, how can I import or install npm pa...
Hi, how can I import or install npm packages in a node? I want to use crypto
4 Replies
@ehsueh crypto is an inbuilt nodejs function, you don't need to import it. Also, you can use the AI builder (compass).

Oh ok!! Thank you!! What if it was a package not included?
Use named imports for other packages,
import fs from "fs";
- example
if you'll build with the inbuilt AI builder (compass), you can eliminate all these issues.Yes, I've been using that! Thanks!