defile

0.1.0 • Public • Published

defile

defile converts files (images, audio, video, etc.) into React/Preact components.

Installation

If you want to use defile with webpack, install defile-loader:

npm install defile-loader --save-dev
# or
yarn add --dev defile-loader

To use the low-level API, or to manage the core library version, install defile:

npm install defile --save
# or
yarn add defile

Configuration

// ...
{
  test: /\.(jpg|png|gif|svg)?$/,
  use: [
    {
      loader: 'defile/react', // 👈 Add loader (use 'defile/preact' for Preact)
      query: {
        tag: 'img', // 👈 The tag name ('audio', 'video', 'track', etc.)
        prop: 'src', // 👈 The prop name used for the file path
        defaultProps: { alt: 'TODO' } // 👈 Default props passed to the element
      }
    }
    'file' // 👈 file-loader must precede defile-loader
  ],

  // or if you prefer classic:

  loader: 'defile/react?{defile/preact?{tag: "img", prop: "src", defaultProps: {alt: "TODO"}}!file'
},
// ...

Usage

See low-level API docs for more implementation details.

React

import React from 'react'
import Cats from './cats.jpg'

export default function () {
  return (
    <div>
      Take a look at my cats:
      <Cats width='300' />
    </div>
  )
}

Preact

import { h } from 'preact'
import Cats from './cats.jpg'

export default function () {
  return (
    <div>
      Take a look at my cats:
      <Cats width='300' />
    </div>
  )
}

Related

License

MIT © Sasha Koss

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.1.0
    3
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 0.1.0
    3

Package Sidebar

Install

npm i defile

Weekly Downloads

3

Version

0.1.0

License

MIT

Last publish

Collaborators

  • kossnocorp