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

@raja-rakoto/plum

v1.0.0

Published

Customize your website faster with PLUM, a mixins toolset powered by SASS. Quickly produce consistent, scalable CSS output, regardless of project size 🩷

Downloads

11

Readme

plum 🩷

forthebadge forthebadge forthebadge forthebadge forthebadge

Git Gitub

Accelerate your website customization process with PLUM β€” an efficient mixins toolset driven by SASS. Easily generate uniform, adaptable CSS stylesheets, regardless of project magnitude. Seamlessly incorporate third-party modules like animate, buttons2, flex, grid, hover2, magic, buttons, open-color, shadows ... Enjoy effortless integration with popular CSS frameworks such as Bootstrap for enhanced versatility.

Additional tools such as Plum CLI and Plum Extension for VSCode are utilized to enhance the use of Plum package.


πŸ“Œ Get started

You can use Plum CLI to install Plum package in your project:

npm install -g @raja-rakoto/plum-cli

Execute the following command to start CLI:

plum-cli

If you use sass package for compiling your SCSS files, you can incorporate the following command in your package.json file to enable SCSS file monitoring:

"scripts": {
  "watch:sass": "sass --watch style.scss:style.css --load-path=node_modules --style=compressed"
},

πŸ“Œ Basics

Plum's main attributes are consolidated through a mix of diverse mixins and useful functions that users can conveniently access offline via the plum CLI, facilitating easy access to the official documentation.

Here are some simple examples of different ways to use Plum (you can refer to all use cases in the plum-cli documentation):

@import '@raja-rakoto/plum/plum';

@include minireset();
@include normalize();
@include antialias();
@include typo-fontface(
  'Quicksand-regular',
  './src/assets/fonts/Quicksand-regular.ttf'
);

.box {
  width: __convertToRem(100px);
  height: __convertToEm(150px);
  color: __color-pastel(blue);
}

.zoom-in {
  @include animation-zoom($in-out: in);
}

.box-debug {
  @include box-debugging(
    $colors: red,
    $size: 3px,
    $bg-color: false,
    $status: true
  );
}

.opacity-50 {
  @include effect-opacity($percent: 50%);
}

img {
  @include image-responsive($height: auto);
}

.video-element {
  @include video-responsive('4/3');
}

@include input-all(hover) {
  background-color: orangered;
}

@include button-all {
  background-color: teal;
  color: white;
}

.containing-element {
  @include position-set(sticky, null 30px null 30px);
}

.containing-element {
  @include spacing-padding-size(small);
}

.parent-element {
  @include clearfix;
}

.parent-element {
  @include columnize(4);
  .item {
    background-color: silver;
  }
}

.element {
  @include flex-box();
}

.element {
  @include flex-wrap(wrap-reverse);
}

.containing-element {
  @include breakpoint(only, 1200px) {
    background-color: teal;
  }
}

.main-container {
  @include adaptive();
}

.wrapper {
  .item {
    @include except(first) {
      background-color: dodgerblue;
      color: #eee;
    }
  }
}

.wrapper {
  .item {
    @include only(last) {
      background-color: dodgerblue;
      color: #eee;
    }
  }
}

.wrapper {
  @include overflow-wrap();
}

@include loadify(init);

img {
  @include loadify(0.5s); // note: you must initialize the loadify before
}

.containing-element {
  @include mobile(iPhoneX) {
    background-color: teal;
  }
}

.containing-element {
  @include tablet(iPadPro) {
    background-color: teal;
  }
}

.containing-element {
  @include resizable();
}

.containing-element {
  @include sizer(400px);
}

.element {
  @include trbl(55px, null, null, 15px);
}

πŸ“Œ Extension (VSCode)

Plum simplifies its utilization through a dedicated VSCode extension, encompassing a variety of code snippets. These snippets facilitate swift code generation for invoking mixins, functions, modules, frameworks, and more ...

Usage: You can install it by typing "plum" in the extension tab of your IDE

Prefix: The extension of Plum includes a particular "prefix" to better organize and classify its snippets:

plum-[category]-[name...] // e.g: plum-modules-oc-grape

[category]: These keywords serve as quick references for identifying the appropriate snippets to utilize. Here are the examples of categories (you can see the full list in the extension):

  • import
  • modules
  • specs
  • animation
  • box
  • effect
  • input
  • image
  • position ...

[name]: This designation denotes a mixin, function, module, or framework name. It acts as a quick identifier for the specific code snippet you wish to employ. For example, if you're opting for the "blue" color scheme, simply typing "plum-blue" will prompt the extension to suggest "plum-modules-oc-blue" for your selection.


πŸ“Œ Modules & Applications & Scripts

Here are the lists of third-party modules, applications, and scripts that you can use with Plum:

The "module" tag signifies libraries or frameworks that can be imported into your SASS file using the @import directive. Meanwhile, "app" tag refer to a collection of tools that enable you to access documentation or generate code. Lastly, the "script" tag indicates that it requires a JavaScript file to be functional. All are available on plum CLI.

Animate (module + app): A collection of CSS animations to make your website more attractive !

@import '@raja-rakoto/plum/modules/animate';
.bounce-in-left {
  @include animate-bounceInLeft($duration: second, $delay: second);
}

Magic (module + app): Magic CSS are a set of simple animations to include in your web or app project's.

@import '@raja-rakoto/plum/modules/magic';
.open-up-left {
  @include magic-openUpLeft($duration: second, $delay: second);
}

Buttons2 (module + app + script): A highly customizable production ready mobile web and desktop css button library.

@import '@raja-rakoto/plum/modules/buttons2';
@include buttons2-borderless();

Hover2 (module + app): A collection of CSS3 powered hover effects to be applied to links, buttons, logos, SVG, featured images and so on. Easily apply to your own elements, modify or just use for inspiration.

@import '@raja-rakoto/plum/modules/hover2';
@include hover2-2d-transitions-shrink();

Open color | oc-scheme (module + app): Open-source color scheme optimized for UI like font, background, border and more ...

@import '@raja-rakoto/plum/modules/open-color';
h1 {
  color: $oc-green-5;
}

Fontawesome (module): The web's most popular icon set and toolkit.

@import '@raja-rakoto/plum/modules/fontawesome-free';

Bootstrap (module + script): Plum integrates the sass source code of Bootstrap 5 in order to partially use its functionalities. You have 4 choices:

@import '@raja-rakoto/plum/modules/bootstrap';
@import '@raja-rakoto/plum/modules/bootstrap-grid';
@import '@raja-rakoto/plum/modules/bootstrap-reboot';
@import '@raja-rakoto/plum/modules/bootstrap-utilities';

Flex (app): Generate flexbox CSS code to make dynamic layouts !

Grid (app): Generate basic CSS Grid code to make dynamic layouts !

Buttons (app) : Generate stylish buttons in css !

Shadows (app): Collection of shadow variants for your boxes !


πŸ“Œ NPM Scripts

scripts (utils)

  • πŸ“œ script:global-docs - Generate README.md for documentation
  • πŸ“œ script:global-charset - Adds the @charset "UTF-8" declaration at the beginning of all SCSS files in the project.
  • πŸ“œ script:hover-comment - Used to remove the first line of a SCSS file if it starts with a comment.

Testing

  • πŸ“œ test - Run the watched file for sass testing.

Documentation

  • πŸ“œ documentation - Generate offline docs with Sassdoc

Linting and Formatting

  • πŸ“œ eslint - Lint source files with ESLint.
  • πŸ“œ prettier - Reformat source files with Prettier.

Backup and Dependency Management

  • πŸ“œ backup - Backup files with Grunt.
  • πŸ“œ pkg-check - Check useless dependencies with depcheck.
  • πŸ“œ pkg-upgrade - Upgrade outdated dependencies (interactive mode) with npm-check-updates.

Versioning

  • πŸ“œ versioning - Start ungit server.

npm Commands

  • πŸ“œ npm-version:major - Increments the major version number of your project using npm.
  • πŸ“œ npm-version:minor - Increments the minor version number of your project using npm.
  • πŸ“œ npm-version:patch - Increments the version patch number of your project using npm.
  • πŸ“œ npm-publish - Publish your npm package with public access.
  • πŸ“œ npm-unpublish - Forcefully unpublish the plum package from npm.
  • πŸ“œ npm-reset:registry - Delete the custom npm registry.
  • πŸ“œ npm-check:registry - Get the currently configured registry for npm.
  • πŸ“œ npm-proxy-set:registry - Set the npm registry to use a local proxy.
  • πŸ“œ npm-proxy:start - Start a Verdaccio server with a local npm proxy.
  • πŸ“œ npm-login - Login to a registry user account.
  • πŸ“œ npm-proxy:publish - Publish your npm package via the local proxy.
  • πŸ“œ npm-proxy:unpublish - Forcefully unpublish the plum package from the npm registry via the local proxy.
  • πŸ“œ npm-proxy:republish - Republish your npm package by first unpublishing it and then publishing it again via the local proxy.