Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

tinyview.js

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tinyview.js - npm Package Compare versions

Comparing version 1.0.1 to 1.0.2

2

package.json
{
"name": "tinyview.js",
"version": "1.0.1",
"version": "1.0.2",
"description": "A lightweight javascript image viewer",

@@ -5,0 +5,0 @@ "main": "tinyview.js",

@@ -8,5 +8,5 @@ # TinyView.js

## Features Demo
<img src="https://github.com/jacksonCV1114/TinyView/blob/main/Demo1.gif" width="300"/>
<img src="https://github.com/jacksonCV1114/TinyView/blob/main/Demo2.gif" width="300"/>
<img src="https://github.com/jacksonCV1114/TinyView/blob/main/Demo3.gif" width="300"/>
<img src="https://github.com/jacksonCV1114/TinyView/blob/main/Demo1.gif" width="150"/>
<img src="https://github.com/jacksonCV1114/TinyView/blob/main/Demo2.gif" width="150"/>
<img src="https://github.com/jacksonCV1114/TinyView/blob/main/Demo3.gif" width="150"/>

@@ -48,2 +48,19 @@ ## Features

<script src="/path/to/tinyview.js"></script>
```
```
### Example
```
<html>
<body>
<img width="200px" id="elem1" src="./image1.jpg">
<img width="200px" id="elem2" src="./image2.jpg">
</body>
<script>
const elem1 = document.getElementById("elem1");
const elem2 = document.getElementById("elem2");
const tinyview = new TinyView(elem1, elem2);
</script>
</html>
```
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