what is node alpine code example

Example 1: docker node alpine

# Copy and paste to pull this image for the latest 
docker pull node

# more specific use this line
# docker pull node:<version>-alpine 
docker pull node:14.4-alpine3.11

Example 2: alpinejs

<div
    x-show="open"
    x-transition:enter="transition ease-out duration-300"
    x-transition:enter-start="opacity-0 transform scale-90"
    x-transition:enter-end="opacity-100 transform scale-100"
    x-transition:leave="transition ease-in duration-300"
    x-transition:leave-start="opacity-100 transform scale-100"
    x-transition:leave-end="opacity-0 transform scale-90"
>...</div>

Tags:

Misc Example