We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a32a24d commit c1eab0eCopy full SHA for c1eab0e
README.md
@@ -71,6 +71,19 @@ exports.handler = moesif(moesifOptions, exports.handler);
71
72
```
73
74
+Depends on which version of node, you can also import directly.
75
+
76
+```javascript
77
+import moesif from 'moesif-aws-lambda'
78
+```
79
80
+If you are using ESM or later version of ESM. There are few other ways of importing:
81
82
83
+const moesifImportWrapper = await import('moesif-aws-lambda');
84
+const moesif = moesifImportWrapper.default;
85
86
87
### 2. Enter Moesif Application Id
88
Your Moesif Application Id can be found in the [_Moesif Portal_](https://www.moesif.com/).
89
After signing up for a Moesif account, your Moesif Application Id will be displayed during the onboarding steps.
0 commit comments