This example demonstrates how to integrate Stylescape with Parcel, a zero-configuration web application bundler.
Stylescape is a comprehensive design system and CSS framework that provides a complete toolkit for building modern, accessible, and responsive web interfaces. It includes layout systems, interactive components, and utility classes.
git clone https://github.com/stylescape/example-parcel.git
cd example-parcel
npm installnpm startThis starts the Parcel development server with hot module replacement.
npm run buildBuilds optimized assets for production.
example-parcel/
├── src/
│ ├── index.html # Main HTML entry point
│ ├── js/ # JavaScript source files
│ └── scss/ # Sass stylesheets
└── package.json # Dependencies and scripts
- Importing Stylescape via npm
- Zero-config Sass compilation
- Automatic JavaScript bundling
- Fast development server with HMR
MIT