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
- Host: GitHub
- URL: https://github.com/himujjal/jquery-plugin-lib
- Owner: Himujjal
- Created: 2022-04-13T10:46:58.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2022-04-13T11:03:02.000Z (about 3 years ago)
- Last Synced: 2025-01-23T11:37:25.182Z (4 months ago)
- Language: HTML
- Size: 1.95 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.