ehsuehE
BuildShip5mo ago
4 replies
ehsueh

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

import crypto from 'node:crypto';

const hmac = crypto
  .createHmac('sha256', 'your-secret-key')
  .update('some-string')
  .digest('base64');
Was this page helpful?