Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

use absolute path. #4588

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

Conversation

jimmywarting
Copy link

use explicit path in imports (See #4587)

### Title: Encourage Explicit Import Paths for Better Compatibility and Predictability

**Description:**
When using Alpine.js via a CDN (e.g., [jsDelivr](https://cdn.jsdelivr.net)), importing modules without explicit file extensions may lead to issues. For example, attempting to import the CSP build results in a 404 error:

```javascript
import Alpine from 'https://cdn.jsdelivr.net/npm/@alpinejs/[email protected]/builds/cdn.js';
```

This error occurs because Alpine.js includes module imports without explicitly specifying file extensions. Some runtime environments and CDNs, including Deno, enforce stricter module resolution and do not guess the correct extension.

### Example Error:

```
GET https://cdn.jsdelivr.net/npm/@alpinejs/[email protected]/src/index net::ERR_ABORTED 404 (Not Found)
```

### Suggested Solution:

- Explicitly specify `.js` in all import paths, e.g.:
  ```javascript
  import Alpine from './index.js';
  ```
- This approach is aligned with best practices and ensures compatibility across multiple environments.

Ryan dhal did regreted the hole module resolver thinking index was cute, but oh so wrong he was. it adds complexity to a simple solution that don't even work in the browser/esm. It gets harder to make the switch by refactoring code to esm. paths need to be guessed/looked up: did you meant to import `foo.js` or `foo/index.js`? Remote path resolver don't have this luxury where it dose not have direct access to the harddrive and can't lookup the file that is needed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant