Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

How do you use other NPM modules? #14

Closed
mikecann opened this issue Aug 25, 2016 · 4 comments
Closed

How do you use other NPM modules? #14

mikecann opened this issue Aug 25, 2016 · 4 comments

Comments

@mikecann
Copy link

mikecann commented Aug 25, 2016

Suppose I want to use a third party lib such as axios how do I go about doing that?

If I import * as axios from "axios"; then run sls webpack serve I get the following error:

ReferenceError: XMLHttpRequest is not defined
    at dispatchXhrRequest (C:\Projects\Experiments\my-third-service\.webpack\handler.js:1045:24)
    at xhrAdapter (C:\Projects\Experiments\my-third-service\.webpack\handler.js:1037:11)
    at process._tickDomainCallback (internal/process/next_tick.js:129:7)

If I include axios in the externals of webpack.config.js:

externals: [
    'axios'
  ],

The code runs but after sls deploy I get the following error when I try to run the function:

{"errorMessage":"Cannot find module 'axios'","errorType":"Error","stackTrace":["Module.require (module.js:353:17)","require (internal/module.js:12:17)","Object.<anonymous> (/var/task/handler.js:132:19)","__webpack_require__ (/var/task/handler.js:20:30)","Object.<anonymous> (/var/task/handler.js:51:14)","__webpack_require__ (/var/task/handler.js:20:30)","/var/task/handler.js:40:18","Object.<anonymous> (/var/task/handler.js:43:10)"]}

Any ideas? Perhaps an example that uses a third party lib would be good?

@cyyuen
Copy link
Contributor

cyyuen commented Aug 25, 2016

I think we should pack the external packages into dist when deploy. We could use npm to resolve all the external dependencies which are stated in webpack config.

@thenikso
Copy link
Contributor

see #16 in the works by @cyyuen. I think it could be a great way to solve the issue

@mikestaub
Copy link

Hi guys, I have some issues with the current approach, please see my PR for details: #18

@thenikso
Copy link
Contributor

This should now be at least doable in beta.2.2 with #16 in it. Further improvements as discussed in #18 might occur in the future. Closing this

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants