npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@luego/nunjucks-luego-image-extension

v1.6.2

Published

A extension for Nunjucks template engine

Downloads

219

Readme

Luego Image {% img %}

É um auxílio para criar <img>, a partir de uma imagem de origem, é possível convertê-la em qualidade, tamanho, proporção e formato.

Instalação

Caso esteja usando um boilerplate mais antigo, é possível adicionar essa funcionalidade usando o comando:
PS: Na versão mais atual já consta essa funcionalidade

# NPM
npm i nunjucks-luego-image-extension

# Yarn
yarn add nunjucks-luego-image-extension

Como usar

PS: A pasta root das imagens continua sendo /assets/images/ *

# Versão abreviada
{% img 'imagem.jpg' %}

# Versão completa
{% img src='imagem.jpg' %}

Resultado

<picture class="wrap-img-imagem-G4352">
    <img
      src="assets/images/exported/placeholder/imagem-G4352.svg"
      alt=""
      class="img-imagem-G4352"
      data-src="assets/images/exported/imagem-G4352.webp"
      loading="lazy"
      height="1280"
      width="1920"
      style="">
</picture>

Observações importantes

  • Imagens acima de 1920px de largura serão exportadas para 1920px caso queira uma imagem maior, informe com o atributo width.
  • Recomendamos fortemente o atributo alt SEMPRE.
  • A extensão padrão de expotação é webp
  • A partir da imagem original é criado um svg como placeholder

Atributos

Atributo | Tipo | Default | Description ------ | ---- | ------- | ----------- src | string | - Obrigatório informar - | Primeiro parâmetro, src= é opcional width | number | Tamanho original (max 1920px) | Somente width mantém o aspect ratio height | number | Tamanho original (max 1080px) | Somente height mantém o aspect ratio fit | string | cover | Opções: cover / contain / fill / inside / outside ratio | string | proporção original | Proporção width/height quality | number | 85 | De 1 - 100 format | string | webp | Opções: jpg / webp / png / gif loading | string | lazy | Opções: lazy / eager class | string | 'img-' + uniqueId + nome do arquivo | - source | object | null | Atributos abaixo:

Width
# Sem o height, manterá o aspect ratio original
{% img 'imagem.jpg', width=500 %}
Height
# Sem o width, manterá o aspect ratio original
{% img 'imagem.jpg', height=500 %}

# Caso seja passado ambos os atributos, será considerado o atributo FIT (defaut: cover)
{% img 'imagem.jpg', height=500, width=500 %}
Fit
# Opções: cover / contain / fill / inside / outside
{% img 'imagem.jpg', height=500, width=400, fit='contain' %}
Ratio
# Para portrait o valor tem que ser menor que 1 Ex:
{% img 'imagem.jpg', ratio=0.7 %}

# Para landscape o valor tem que ser maior que 1 Ex:
{% img 'imagem.jpg', ratio=1.5 %}
Quality
# de 1 a 100 PS: em webp a compressão é muito eficiente
{% img 'imagem.jpg', quality=80 %}
Format
# Opções: jpg / webp / png / gif
{% img 'imagem.jpg', format='png' %}
Loading
# Opções: Opções: lazy / eager (carregamento natural)
{% img 'imagem.jpg', loading='eager' %}
Class
# Substitui a classe da img e o picture
{% img 'imagem.jpg', class='hero-item' %}
Source (saiba mais)

Uma imagem com a função de substituir a imagem "padrão", ela pode ser configurada como os media queries que já são utilizados em css, por exemplo, min-width, ou max-width.

Atributos Source

Atributo | Tipo | Default | Description ------ | ---- | ------- | ----------- breakpoint | string | (max-width: 768px) | Media queries width | number | 500 | Somente width mantém o aspect ratio height | number | mantém a proporção original | Somente height mantém o aspect ratio

# O padrão é (max-width: 768px) ou seja, mobile, mas pode ser alterado
{% img 'imagem.jpg', source={breakpoint: '(max-width: 1024px)', width: 500, height: 500} %}