New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

quick-front

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

quick-front

Package to quickly hack together a frontend for your server. Extracted and slightly polished from personal use. There are some inconsistent and inefficient design decisions and also no documentation. See examples folder, if you want to make something with

latest
Source
npmnpm
Version
1.3.0
Version published
Maintainers
1
Created
Source

QuickFront

Package to quickly hack together a frontend for your server. Extracted and slightly polished from personal use. There are some inconsistent and inefficient design decisions and also no documentation. See examples folder, if you want to make something with this.

It is only meant to be used as a dev placeholder or for small projects where the performance and user friendliness of your frontend are not important. No feedback or corrections are accepted. Good luck.

Usage

Serve the included files from your backend or use an npm CDN like unpkg.

<!DOCTYPE html>
<html>
<head>
    <link rel="stylesheet" href="https://www.unpkg.com/quick-front@1.0.0/dist/assets/main.css">
    <script type="module" src="https://www.unpkg.com/quick-front@1.0.0/dist/assets/quick-front.js"></script>
</head>
<body>
    <div form-type="Object_t" class="p-4"></div>

    <ul>
        <template for="$i in [...range(10)]">
            <li>$i</li>
        </template>
    </ul>

    <script>
        function init() {
            STATE.value = { value: 0 }

            const Object_t = Type.object({
                value: Type.number
            })

            startApp({ Object_t })
        }
    </script>
</body>
</html>

FAQs

Package last updated on 15 Apr 2024

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