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

fepper

v0.41.3

Published

A Front End Prototyper tool for rapid prototyping of web sites

Downloads

173

Readme

Known Vulnerabilities Linux Build Status Mac Build Status Windows Build Status Coverage Status Node Version License

This is the npm that powers these Fepper prototypers:

  • Fepper Main - main distribution.
  • Fepper Base - no unnecessary assets, styles, demo website, or fp-stylus extension.
  • Fepper for Drupal - templates configured for Drupal, along with a Drupal theme built to accommodate those templates.
  • Fepper for Wordpress - templates configured for WordPress, along with a WordPress theme built to accommodate those templates.

Please consult any of the above links for documentation on getting started and on power-usage of Fepper.

Under the Hood

Minimum supported Node.js version 18.0.0

To just run a Node.js implementation of Pattern Lab, instantiate a patternlab object as follows:

const config = require('./patternlab-config.json');
const cwd = process.cwd();
const Patternlab = require('fepper/ui/core/lib/patternlab');
const patternlab = new Patternlab(config, cwd);

Fepper's Patternlab constructor recognizes a second argument (current working directory) for instantiating a patternlab object. This allows it to be instantiated from any directory within any task runner or custom application.

Fepper exposes these methods on the patternlab object:

  • build: function (options)
  • compile: function (options)
  • resetConfig: function (config)

The options argument is optional. If submitted, it must be an object whose properties are intended to override one or more properties in the config object consumed by the Patternlab constructor.

Keep in mind that configs overridden by an options argument will persist through all future operations on that Patternlab instance. In order to revert the configs back to the original configs, call resetConfig with the original configs. resetConfig will reset any number of properties submitted but will not delete any preexisting properties.

Fepper is 100% compatible with Pattern Lab PHP Mustache code. It aims to maintain parity with the PHP distribution with respect to performance and core features.

Upfront and Onscreen

Using this npm decoupled from a full Fepper project requires compiling the UI by running this line of Node.js:

patternlab.compile();

The word "compile" takes on a special meaning in Fepper, referring to assembling "components" into a whole. "Build" refers to outputting patterns to be displayed by the UI.

All aspects of the UI are available for customization. For example, the toolbar can accept additions, modifications, and deletions per the needs of end-users. The UI markup is compiled by recursive, functional React calls. The recursion tree is reflected by the directory structure containing the modules which compose the UI. To override any given module, copy the directory structure leading to the module from https://github.com/electric-eloquence/fepper-npm/tree/dev/ui/core/styleguide/index/html to source/_ui/index/html, respective to your implementation. Modifications to modules in that directory will override the corresponding modules in core. Additions (so long as they are correctly nested) will also be recognized.

A working example of UI customization can be found at https://github.com/electric-eloquence/fepper-drupal/blob/dev/source/_ui/index/html/00-head/head.component.js. The Fepper for Drupal project overrides its HTML title to read "Fepper for Drupal" instead of "Fepper". In order to do so, it has the head.component.js module nested in directories that correspond to the tags that nest the head HTML element. Both head.component.js and its nesting directories must be named similarly to their corresponding elements. .component.js indicates that the file is a module to be rendered by React. It must export an object of props consumable as the second parameter to React.createElement(). The numeric prefix to 00-head orders it to precede 01-body, even though "body" precedes "head" alphabetically.

In this example, by allowing customizations in the 00-head directory separate from the core components, core updates will be respected for all components except for the HTML head.

Browser JavaScript and CSS customizations can (and should) be componentized this way as well. While a head element is unlikely to have associated scripts or styles, the UI's main element does have its scripts and styles componentized as main.js and main.css in index/html/01-body/40-main. A big advantage for this type of componentization comes when elements are renamed or deleted. When you rename or delete an element, are you absolutely sure you'll rename or delete accordingly in some far-flung, monolithic script or style file?

Alas, no one should be forced to componentize this way. Generic modifications to UI scripts can be added to source/_scripts/ui-extender.js.

Similarly, generic modifications to UI CSS can be added to source/_styles/pattern-scaffolding.css. (The file is named this way to adhere to the Pattern Lab documentation on custom pattern states. It should not be relied on for pattern scaffolding.)

View All markup can also be overridden by copying the .mustache files in https://github.com/electric-eloquence/fepper-npm/tree/dev/ui/core/styleguide/viewall and pasting them to source/_ui/viewall (nested correctly). Modifications will then be recognized and displayed in the UI. (No additions are allowed.) Custom View All styles can be added to source/_styles/pattern-scaffolding.css.

You will need to compile the UI in order for the browser to pick up custom changes to the UI. Within a full Fepper project, this can be accomplished with the following command:

fp ui:compile

New UI customizations will not be picked up simply by restarting Fepper.

Just the Fepper Instance

While it is recommended that you use Fepper with the Fepper CLI, and its fp command, you can alternatively instantiate a barebones Fepper instance:

const cwd = process.cwd();
const Fepper = require('fepper');
const fepper = new Fepper(cwd);

cwd must contain conf.yml, patternlab-config.json, pref.yml, and the source and public directories.

There is currently no public API for object-oriented Fepper. To express demand for one, please open an issue.