Socket
Socket
Sign inDemoInstall

postcss-safe-parser

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postcss-safe-parser

Fault-tolerant CSS parser for PostCSS


Version published
Weekly downloads
6.2M
increased by0.76%
Maintainers
1
Weekly downloads
 
Created

What is postcss-safe-parser?

The postcss-safe-parser package is a fault-tolerant CSS parser that can handle CSS with syntax errors. It is designed to be used with PostCSS, a tool for transforming CSS with JavaScript plugins. The safe parser can parse CSS files and recover from syntax errors gracefully, allowing developers to work with CSS that may not be perfectly formatted or may contain mistakes.

What are postcss-safe-parser's main functionalities?

Fault-tolerant CSS parsing

This feature allows developers to parse CSS with syntax errors without stopping the process. The provided code sample demonstrates how to use postcss-safe-parser with PostCSS to process a CSS string.

const postcss = require('postcss');
const safeParser = require('postcss-safe-parser');

postcss()
  .process('a { color: red; }', { parser: safeParser })
  .then(result => {
    console.log(result.css);
  });

Other packages similar to postcss-safe-parser

Keywords

FAQs

Package last updated on 29 Feb 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc