New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

paperjs

Package Overview
Dependencies
Maintainers
1
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

paperjs

Paper JS is a new way to write HTML entirely in your JavaScript.

  • 0.0.39
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
16
increased by6.67%
Maintainers
1
Weekly downloads
 
Created
Source

Logo Banner

npm version File Size Forks Stars Issues License Donate on Kofi

Paper JS is a new way to write HTML entirely in your JavaScript.

Installation

CDN

Import Paper JS using CDN.

import { PaperJSInterpreter } from 'https://cdn.jsdelivr.net/npm/paperjs';
🚧 Specific Version
import { PaperJSInterpreter } from 'https://cdn.jsdelivr.net/npm/paperjs@latest';

NPM

Install Paper JS using npm and node.

npm install paperjs

Import

Import paperjs definitions from PaperJSInterpreter.

index.js

import { PaperJSInterpreter } from './paperjs/import.min.js';

PaperJSInterpreter.interpret(paperjs);

Usage

Use the tree structure in your Javascript. That's it 🎉.

script.js

import { PaperJSInterpreter } from 'https://cdn.jsdelivr.net/npm/paperjs';

const paperjs = {
  div: {
    class: 'container',
    styles: 'justify-content: center;display: flex;align-items: center;height: 100%;width: 100%;top: 0;left: 0;right: 0;bottom: 0;position: fixed;',
    form: [
      {
        styles: 'width: 300px;',
        input: [
          {
            type: 'email',
            placeholder: 'Email',
            styles: 'display: flex;width: 100%;height: 38px;',
          },
          {
            type: 'password',
            styles: 'margin-top: 12px;display: flex;width: 100%;height: 38px;',
            placeholder: 'Password',
          },
        ],
        label: [
          {
            value: 'Join newsletter',
            styles: 'display: flex;font-family: "Roboto", sans-serif;margin-top: 28px;width: 100%;',
            input: [
              {
                type: 'checkbox',
                id: 'checkbox',
                styles: 'display: flex;margin-left: 10px;',
              },
            ],
          },
        ],
        button: [
          {
            styles: 'margin-top: 20px;display: flex;width: 100%;align-items: center;height: 32px;justify-content: center;',
            value: 'Reset',
            type: 'reset',
            class: 'reset-button',
          },
        ],
      },
    ],
  },
};

PaperJSInterpreter.interpret(paperjs);

Examples

  • A basic form with PaperJS.

  • A simple sidebar with PaperJS.

  • Using the library with Material UI.

Licensed under the MIT License, Copyright © 2024-present Opensource-Paper.

See LICENSE for more information.

Keywords

FAQs

Package last updated on 14 Jun 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

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