New:Microsoft Teams Notifications Are Now Available in Socket.Learn more
Get Started

postboot

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postboot

Web app prototyping library based on Bootstrap framework.

latest
Source
npmnpm
Version
2.0.0
Version published
Weekly downloads
10
-28.57%
Maintainers
1
Weekly downloads
 
Created
Source

PostBoot

Web app prototyping library based on Bootstrap framework.

Contents

  • Compatibility
  • Installation
  • Usage
  • Author
  • License

Compatibility

LibraryVersion
Bootstrap>= 5.3

PostBoot does not overwrite any components of Bootstrap, but only extends most of them. You can use it completely safe.

Installation

NPM

npm install postboot

Usage

CDN

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>PostBoot</title>

    <!-- CSS -->
    <link href="https://cdn.jsdelivr.net/npm/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
    <link href="https://cdn.jsdelivr.net/npm/postboot/dist/css/postboot.min.css" rel="stylesheet">
  </head>
  <body>
    <h1>PostBoot</h1>

    <!-- JS -->
    <script src="https://cdn.jsdelivr.net/npm/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
    <script src="https://cdn.jsdelivr.net/npm/postboot/dist/js/postboot.min.js"></script>
  </body>
</html>

Local

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>PostBoot</title>

    <!-- CSS -->
    <link href="css/bootstrap.min.css" rel="stylesheet">
    <link href="css/postboot.min.css" rel="stylesheet">
  </head>
  <body>
    <h1>PostBoot</h1>

    <!-- JS -->
    <script src="js/bootstrap.bundle.min.js"></script>
    <script src="js/postboot.min.js"></script>
  </body>
</html>

Author

License

This project is licensed under the MIT License - see the LICENSE file for details.

Keywords

bootstrap

FAQs

Package last updated on 07 Aug 2026

Related posts