Question

Function SendGrid Node Import error

Hi there,

I’m trying to create a function using NodeJs and SendGrid. I think I have the code correct, however, I’m getting an error on importing the SendGrid module.

Error [ERR_MODULE_NOT_FOUND]: Cannot find package ‘@sendgrid/mail’ imported from /tmp/index.mjs

Done the usual Googling and searching the community, but I can’t seem to find the solution.

Bring the import like this:

import * as sgMail from '@sendgrid/mail';

package.json looks like this:

{
  "name": "sendgrid-sendemail-js-do",
  "type": "module",
  "main": "main.js",
  "dependencies": {
    "@sendgrid/mail": "^7.7.0",
    "axios": "^1.5.1"
  }
}

Managed to successfully get a different function working after working through issue, but this one seems to be wracking my brains!

Any pointers would be appreciated.


Submit an answer


This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

Sign In or Sign Up to Answer

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Bobby Iliev
Site Moderator
Site Moderator badge
April 8, 2024

Hi there!

This indeed should work as expected. Do you have your package-lock.json also added to your GitHub repository?

Here is a quick demo app that includes some extra Node dependencies that you could use as a blueprint:

https://github.com/digitalocean/sample-functions-nodejs-calculator/blob/master/packages/calc/eval/package.json

You can also try using the --remote-build flag. When you run doctl serverless deploy with the --remote-build flag, the Functions service performs a remote build. The remote build uses the toolchains present in the runtime container for the chosen language.

Best,

Bobby

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up

Get our biweekly newsletter

Sign up for Infrastructure as a Newsletter.

Hollie's Hub for Good

Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.

Become a contributor

Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

Welcome to the developer cloud

DigitalOcean makes it simple to launch in the cloud and scale up as you grow — whether you're running one virtual machine or ten thousand.

Learn more
DigitalOcean Cloud Control Panel