How to resolve relative path to absolute url in ES6 module (in browser)?
For example :
JavaScript
x
9
1
base-url.com/
2
|-resolve
3
| |-resolveUrl.js
4
|-dir
5
|-dir1
6
|-module1.js
7
|-dir2
8
|-module2.js
9
module1.js
JavaScript
1
3
1
import resolveUrl from "../../../resolve/resolveUrl.js"
2
resolveUrl("../dir2/module2.js") // return 'base-url.com/dir/dir2/module2.js'
3
What would be the resolveUrl
implementation?
base-url.com/
may not be the web-site’s domain. It can be a repo where only sources are stored.
Advertisement
Answer
🎉 You can now use to-absolute-url.
It uses stacktrace.js under the hoods to get the caller function’s absolute path file:
Thanks to @PatrickRoberts for his idea to use stacktrace, and @jfriend00 for his tip to use URL
object.