Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@familyjs/core

Package Overview
Dependencies
Maintainers
0
Versions
41
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@familyjs/core

Base components for Family

  • 5.9.5
  • v5-lts
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
37
increased by60.87%
Maintainers
0
Weekly downloads
 
Created
Source

@familyjs/core

Family is an open source App Development Framework that makes it easy to build top quality Native and Progressive Web Apps with web technologies.

The Family Core package contains the Web Components that make up the reusable UI building blocks of Family Framework. These components are designed to be used in traditional frontend view libraries/frameworks (such as Rindo, React, Angular, or Kdu), or on their own through traditional JavaScript in the browser.

Features

  • Tiny, highly optimized components built with Rindo
  • Styling for both iOS and Material Design
  • No build or compiling required
  • Simply add the static files to any project
  • Lazy-loaded components without configuration
  • Asynchronous rendering
  • Theming through CSS Variables

How to use

Vanilla HTML

Easiest way to start using Family Core is by adding a script tag to the CDN:

<script type="module" src="https://cdn.jsdelivr.net/npm/@familyjs/core/dist/family/family.esm.js"></script>
<script nomodule src="https://cdn.jsdelivr.net/npm/@familyjs/core/dist/family/family.js"></script>
<link href="https://cdn.jsdelivr.net/npm/@familyjs/core/css/family.bundle.css" rel="stylesheet">

Any Family component added to the webpage will automatically load. This includes writing the component tag directly in HTML, or using JavaScript such as document.createElement('fml-toggle').

Additionally, within this package is a dist/family.js file and accompanying dist/family/ directory. These are the same files which are used by the CDN, and they're available in this package, so they can be a part of an app's local development.

Framework Bindings

The @familyjs/core package can be used in simple HTML, or by vanilla JavaScript without any framework at all. Family also has packages that make it easier to integrate Family into a framework's traditional ecosystem and patterns. (However, at the lowest-level framework bindings are still just using Family Core and Web Components).

Custom Elements Build (Experimental)

In addition to the default, self lazy-loading components built by Rindo, this package also comes with each component exported as a stand-alone custom element within @familyjs/core/components. Each component extends HTMLElement, and does not lazy-load itself. Instead, this package is useful for projects already using a bundler such as Webpack or Rollup. While all components are available to be imported, the custom elements build also ensures bundlers only import what's used, and tree-shakes any unused components.

Below is an example of importing fml-toggle, and initializing Family, so it's able to correctly load the "mode", such as Material Design or iOS. Additionally, the initialize({...}) function can receive the Family config.

import { FmlBadge } from "@familyjs/core/components/fml-badge";
import { initialize } from "@familyjs/core/components";

initialize();

customElements.define("fml-badge", FmlBadge);

Notice how FmlBadge is imported from @familyjs/core/components/fml-badge rather than just @familyjs/core/components. Additionally, the initialize function is imported from @familyjs/core/components rather than @familyjs/core. All of these helps to ensure bundlers do not pull in more code than is needed.

License

Keywords

FAQs

Package last updated on 14 Oct 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc