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

alga-js

Package Overview
Dependencies
Maintainers
1
Versions
73
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

alga-js - npm Package Compare versions

Comparing version 0.1.0-wood-5 to 0.1.0-wood-6

22

package.json
{
"name": "alga-js",
"version": "0.1.0-wood-5",
"version": "0.1.0-wood-6",
"description": "Alga.js is a JavaScript helper to help build UI components by using any of modern web frameworks or libraries",

@@ -9,20 +9,20 @@ "module": "dist/alga.min.js",

".": {
"import": "dist/alga.min.js",
"require": "dist/alga-umd.js"
"import": "./dist/alga.min.js",
"require": "./dist/alga-umd.js"
},
"./date": {
"import": "lib/date/date.es.js",
"require": "lib/date/date.cjs.js"
"import": "./lib/date/date.es.js",
"require": "./lib/date/date.cjs.js"
},
"./number": {
"import": "lib/number/number.es.js",
"require": "lib/number/number.cjs.js"
"import": "./lib/number/number.es.js",
"require": "./lib/number/number.cjs.js"
},
"./array": {
"import": "lib/array/array.es.js",
"require": "lib/array/array.cjs.js"
"import": "./lib/array/array.es.js",
"require": "./lib/array/array.cjs.js"
},
"./string": {
"import": "lib/string/string.es.js",
"require": "lib/string/string.cjs.js"
"import": "./lib/string/string.es.js",
"require": "./lib/string/string.cjs.js"
}

@@ -29,0 +29,0 @@ },

@@ -15,3 +15,3 @@ <p align="center" style="text-align: center">

# Alga.js
Alga.js is a JavaScript helper to help build UI components by using any of modern web frameworks or libraries, especially the frameworks that we currently use like Vue, Petite-Vue, Alpine.js and Vanilla Web Components to produce our custom elements, see [the documentation here](https://tedirghazali.gitbook.io/algajs/) or visit this link `tedirghazali.gitbook.io/algajs`.
Alga.js is a JavaScript helper to help build UI components by using any of modern web frameworks or libraries, especially the frameworks that we currently use like Vue, Petite-Vue, Alpine.js and Vanilla Web Components to produce our custom elements, see [the documentation here](https://algajs.tedir.dev) or visit this link `https://algajs.tedir.dev`.

@@ -34,7 +34,9 @@ ## Installation

// ES modules
import { array, object, string, number, func, date, ...others* } from 'alga-js' // or
import * as $ from 'alga-js'
import { paginate, pages, pageInfo, pagination, ... } from 'alga-js/array' // highly recommended
import { array, object, string, number, func, date, ...others* } from 'alga-js' // don't use this import
import * as $ from 'alga-js' // don't use this import
// Node/CommonJS modules
const $ = require('alga-js')
const $ = require('alga-js') // other than $, you can use algaJs or any variable name

@@ -49,3 +51,3 @@ // UMD (AMD/IIFE)

// Tree-shakable
// Tree-shakable // not recommended
import { paginate, pages, ... } from 'alga-js/lib/array.js'

@@ -52,0 +54,0 @@ import { weeks } from 'alga-js/lib/date.js' // or

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