calmh / node-snmp-native

Native Javascript SNMP library for Node.js
MIT License
252 stars 66 forks source link

Can't resolve 'dgram' #61

Closed froston closed 6 years ago

froston commented 6 years ago

Hi, when trying to import snmp-native (using webpack) ... import snmp from 'snmp-native' or const snmp = require('snmp-native') ... throws this error: ModuleNotFoundError: Module not found: Error: Can't resolve 'dgram' in '... node_modules/snmp-native/lib' Thanks for any help!

bangert commented 6 years ago

This only works in nodejs, which provides dgram...

https://nodejs.org/api/dgram.html

froston commented 6 years ago

thanks, yeah I was trying to use it in browser