MCPcopy Index your code
hub / github.com/JPeer264/node-rcs-core

github.com/JPeer264/node-rcs-core @v3.7.1

Chat with this repo
repository ↗ · DeepWiki ↗ · release v3.7.1 ↗ · + Follow
194 symbols 501 edges 64 files 0 documented · 0% updated 4y agov3.7.0 · 2021-10-20★ 385 open issues
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

rcs-core

Build Status Coverage Status

rcs is short for rename css selectors

Why?

Having long CSS selectors, such as main-menu__item--disabled, can increase the filesizes. With this rcs-core it is easy to rename the selectors and therefore reduce the filesize. You can save around 20% of the filesize by just shorten the CSS selectors in the CSS files.

What does it do?

It basically just rename/minify all CSS selectors in all files. First the library has to be trained with selectors. Based on this data, the selectors can be renamed in all files. Here are some examples made with Bootstrap files.

Some live projects: - AMP Project (https://amp.dev/) - Analyse (https://analyse.org/) - My personal webpage (https://jpeer.at/)

Caveats

Correctly using rcs-core or any of its plugins on large project means few rules should be followed.

This document explains most of them.

Installation

$ npm install --save rcs-core

or

$ yarn add rcs-core

Usage

Note couple of selectors are excluded by default. You can activate them by using .setInclude before you fill the library

  1. Fill your library with all selectors (we assume there is just one CSS file)
// excluding specific selectors
rcs.selectorsLibrary.setExclude('selector-to-ignore');
// include specific selectors which has been ignored by default
rcs.selectorsLibrary.setInclude('center');

rcs.fillLibraries(fs.readFileSync('./src/styles.css', 'utf8'));
  1. Optimize the selectors compression (optional)
rcs.optimize();
  1. Rewrite all files

Note: Do not forget to replace your CSS file

const css = rcs.replace.css(fs.readFileSync('./src/styles.css', 'utf8'));
const js = rcs.replace.js(fs.readFileSync('./src/App.js', 'utf8'));
const html = rcs.replace.html(fs.readFileSync('./src/index.html', 'utf8'));

// output some warnings which has been stacked through the process
rcs.warnings.warn();

fs.writeFileSync('./dist/styles.css', css);
fs.writeFileSync('./dist/App.js', js);
fs.writeFileSync('./dist/index.html', html);

API documentation

Plugins

Extension points exported contracts — how you extend this code

BaseLibraryOptions (Interface)
(no doc)
lib/baseLibrary.ts
FillLibrariesOptions (Interface)
(no doc)
lib/fillLibraries.ts
KeyframesLibraryOptions (Interface)
(no doc)
lib/keyframesLibrary.ts
AttributeSelector (Interface)
(no doc)
lib/attributeLibrary.ts
Source (Interface)
(no doc)
lib/allWarnings.ts
Stat (Interface)
(no doc)
lib/statistics/generate.ts
GenerateMappingOptions (Interface)
(no doc)
lib/mapping/generate.ts
Attr (Interface)
(no doc)
lib/helpers/shouldTriggerAttribute.ts

Core symbols most depended-on inside this repo

get
called by 145
lib/baseLibrary.ts
set
called by 105
lib/baseLibrary.ts
getClassSelector
called by 54
lib/selectorsLibrary.ts
generate
called by 46
lib/nameGenerator.ts
replaceAttributeSelector
called by 38
lib/attributeLibrary.ts
getIdSelector
called by 34
lib/selectorsLibrary.ts
reset
called by 34
lib/allWarnings.ts
setAlphabet
called by 27
lib/baseLibrary.ts

Shape

Function 80
Method 77
Interface 19
Class 18

Languages

TypeScript100%

Modules by API surface

lib/selectorsLibrary.ts24 symbols
lib/baseLibrary.ts24 symbols
examples/replace/before/bootstrap.js23 symbols
examples/replace/after/bootstrap.replaced.js23 symbols
lib/attributeLibrary.ts17 symbols
lib/nameGenerator.ts8 symbols
lib/keyframesLibrary.ts8 symbols
lib/cssVariablesLibrary.ts8 symbols
lib/allWarnings.ts8 symbols
lib/statistics/generate.ts5 symbols
lib/replace/css.ts4 symbols
lib/replace/js.ts3 symbols

For agents

$ claude mcp add node-rcs-core \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact