Gathering detailed insights and metrics for scss-parser
Gathering detailed insights and metrics for scss-parser
Gathering detailed insights and metrics for scss-parser
Gathering detailed insights and metrics for scss-parser
npm install scss-parser
98.1
Supply Chain
88.8
Quality
75.1
Maintenance
100
Vulnerability
99.1
License
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
110 Stars
67 Commits
17 Forks
9 Watching
4 Branches
10 Contributors
Updated on 25 Oct 2024
JavaScript (100%)
Cumulative downloads
Total Downloads
Last day
-34.9%
18,374
Compared to previous day
Last week
-6.8%
144,218
Compared to previous week
Last month
-3.6%
657,554
Compared to previous month
Last year
-55.5%
11,057,000
Compared to previous year
1let { parse, stringify } = require('scss-parser') 2 3// Create an AST from a string of SCSS 4let ast = parse('.hello { color: $red; }') 5// Modify the AST (see below for a better way to do this) 6ast.value[0].value[0].value[0].value[0].value = 'world' 7// Convert the modified AST back to SCSS 8let scss = stringify(ast) // .world { color: $red; }
For an easy way to traverse/modify the generated AST, check out QueryAST
1let { parse, stringify } = require('scss-parser') 2let createQueryWrapper = require('query-ast') 3 4// Create an AST 5let ast = parse('.hello { color: red; } .world { color: blue; }') 6// Create a function to traverse/modify the AST 7let $ = createQueryWrapper(ast) 8// Make some modifications 9$('rule').eq(1).remove() 10// Convert the modified AST back to a string 11let scss = stringify($().get(0))
Clone the repository, then:
1npm install 2# requires node >= 5.0.0 3npm test
Copyright (c) 2016, salesforce.com, inc. All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. Neither the name of salesforce.com, inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
security policy file detected
Details
Reason
Found 4/18 approved changesets -- score normalized to 2
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
18 existing vulnerabilities detected
Details
Score
Last Scanned on 2024-11-18
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More