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

@fictivekin/fk-sass

v1.0.7

Published

Fictive Kin starter sass framework

Downloads

970

Readme

fk-sass

Fictive Kin starter Sass package.

usage

There are two ways to use fk-sass. 1) Through npm, where project specific styles extend the base package or 2) download and copy directly to your project.

Download and copy

Download this repo and copy the scss directory into your project. Your sass compile step should include that directory as a load-path so that the @use and @forward statements work as expected.

And example compile script would look like:

sass scss:css --source-map --load-path=scss

Through NPM

Run the following in your project directory to install:

yarn add @fictivekin/fk-sass --dev

Copy the example-project directory from this repo into your project where sass files will live.

Add this new directory and the node_modules fk-sass directory to your sass compile script. Here is an example compile script:

sass scss:css --source-map --load-path=scss --load-path=node_modules/@fictivekin/fk-sass/scss

With this setup, the project sass files are setup to either overwrite the fk-sass files, fall-back to the fk-sass files, or be a supplement to the fk-sass files.

This allows you to create prooject specific styles without altering the base package.

Note that there are examples of how this plays out practically in the example-project directory. Several modules have _settings.scss files that are intended to give you control over the look of modules without having to rewrite or copy the base styles.

Things to know

Assets

There is a css url helper available. Add it for use in your sass partial with:

@use 'lib/assets';

or

@use 'lib/assets' as *;

It is also included in the config collection, which you can use with:

@use 'config' as *;

config/_assets.scss has a good example of how http-url, font-url, and image-url are used. This file also lets you set where these asset directories are located. Remember: create a config/_assets.scss file in your project sass files to overwrite the directories that are set in the base package.

Buildstamps can also be an important part of asset linking. To utilize this, your build/deploy process should add a _buildstamp.scss file in your sass directory where a $BUILDSTAMP variable is set (to whatever naming convention you use for this purpose).

Configuration and Custom Properties

The config and _1_base/properties directories seem to accomplish similar tasks — they both contain files that control settings that can affect a lot of your project.

All files in the number folders — _1_base, _2_layout, etc. — write out actual CSS styles. All files in config and lib do not write out CSS, and are designed for use as helpers in other files.

This is why custom properties are set in _1_base, but sass variables are set in config. You'll want to visit both sets of files to prepare your project's setup.

Grid

At this time, there is no all-encompasing grid system included with fk-sass. The growing prevelence of CSS grid means it is often simpler (with less unused CSS) to define the grid within specific modules where it is used.

This is something we'll evaluate with use.