# rin **Repository Path**: mirrors_ecomfe/rin ## Basic Information - **Project Name**: rin - **Description**: Component 预处理器 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2026-01-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README Rin === saber-component 预编译工具 Usage --- 通过 `npm` 安装 npm install rin simple demo ```javascript var fs = require('fs'); var rin = require('rin'); var input = fs.readFileSync('input.html', 'utf-8'); var output = rin.compile(input); ``` input ```html Document mnav

hello world mbtn

``` output ```html Document

hello world

```