An open API service indexing awesome lists of open source software.

https://github.com/himujjal/jquery-plugin-lib

A private NPM module taht is a JQuery plugin - Spiralyze
https://github.com/himujjal/jquery-plugin-lib

Last synced: 2 months ago
JSON representation

A private NPM module taht is a JQuery plugin - Spiralyze

Awesome Lists containing this project

README

        

# A JQuery plugin library to be used for internal Spiralyze purposes

## Installation

You can directly use this library as a CDN in the HTML head:

```html

```

## Publishing

Use git to publish the package

## Development

```
git clone https://github.com/Himujjal/jquery-plugin-lib
cd jquery-plugin-lib
npm i
npm run dev
```

Then open the file [test/index.html](./test/index.html) in your browser through the file manager.

The development server will automatically create a dev server. Edit the files in the `src` folder.

## How to import raw text as strings?

Use the `bundle-text:` prefix in the imports. ([Parcel inlining](https://parceljs.org/features/bundle-inlining/))

e.g.

```js
import text from 'bundle-text:./randomtext.htmlx';
```

NOTE: Don't use `.ext` prefix for such files. Here `.htmlx` prefix is used.