1
0

Тайлбар байхгүй

Caleb Porzio 43088a9cda Add docs and debugging option 3 жил өмнө
.github ee3ec3dfec wip 3 жил өмнө
benchmarks 25715eeb6a Add init alias initializing 3 жил өмнө
packages 43088a9cda Add docs and debugging option 3 жил өмнө
scripts b22aaa4886 Add x-collapse (#2141) 3 жил өмнө
tests 984aa4d147 Rework tests and finalize code for Alpine.morph 3 жил өмнө
.editorconfig 4a1ecdbd1a Add editorconfig file 5 жил өмнө
.gitignore c37f0b5e5c wip 3 жил өмнө
LICENSE.md 26ffa65753 Update README.id.md & years of copyright 4 жил өмнө
README.md 435e120590 Fix a typo and add a link in README.md (#2053) 3 жил өмнө
cypress.json b46c41fa24 Import V3 source 3 жил өмнө
hero.jpg 11d7e8ce8d wip 3 жил өмнө
index.html 20c4fa0ac2 Fix directive handler flushing order (#1901) 3 жил өмнө
jest.config.js b46c41fa24 Import V3 source 3 жил өмнө
package-lock.json c6284c64b9 Fix x-transition fast double click bug (#2339) 3 жил өмнө
package.json 1509849d9c wip 3 жил өмнө

README.md

Alpine.js

Go to the Alpine docs for most things: Alpine Docs

You are welcome to submit updates to the docs by submitting a PR to this repo. Docs are located in the /packages/docs directory.

Stay here for contribution-related information.

Looking for V2 docs? here they are

Alpine Compoenent Patterns

Contribution Guide:

Quickstart

  • clone this repo locally
  • run npm install & npm run build
  • Include the /packages/alpinejs/dist/cdn.js file from a <script> tag on a webpage and you're good to go!

Brief Tour

You can get everything installed with: npm install in the root directory of this repo after cloning it locally.

This repo is a "mono-repo" using npm workspaces for managing the packages. Each package has its own folder in the /packages directory.

Rather than having to run separate builds for each package, all package bundles are handled with the same command: npm run build

Here's a brief look at each package in this repo:

Package Description
alpinejs The main Alpine repo with all of Alpine's core
csp A repo to provide a "CSP safe" build of Alpine
history A plugin for binding data to query string parameters using the history API (name is likely to change)
intersect A plugin for triggering JS expressions based on elements intersecting with the viewport
morph A plugin for morphing HTML (like morphdom) inside the page intelligently
trap A plugin that allows you to conditionally trap focus inside an element

The compiled JS files (as a result of running npm run [build/watch]) to be included as a <script> tag for example are stored in each package's packages/[package]/dist directory.

Each package should at least have: a "cdn" build that is self-initializing and can be included using the src attribute in a <script defer> tag, and a module.[esm/cjs].js file that is used for importing as a JS module (cjs for node, esm for everything else).

The bundling for Alpine V3 is handled exclusively by ESBuild. All of the configuration for these builds is stored in the scripts/build.js file.

Testing

There are 2 different testing tools used in this repo: Cypress (for integration tests), and Jest (for unit tests).

All tests are stored inside the /tests folder under /tests/cypress and /tests/jest.

You can run them both from the command line using: npm run test

If you wish to only run cypress and open it's user interface (recommended during development), you can run: npm run cypress

If you wish to only run Jest tests, you can run npm run jest like normal and target specific tests. You can specify command line config options to forward to the jest command with -- like so: npm run jest -- --watch