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

chromium

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

chromium

Chromium Embedded Framework for Tint

  • 3.2171.3008
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Chromium for Tint

Use chromium as a control in Tint (v2).

Tint: https://www.trueinteractions.com/tint2/docs/

Tint @ GitHub: https://www.github.com/trueinteractions/tint2/

Chromium-Tint: https://www.github.com/trueinteractions/tint-chromium/

API

This follows the same API and functionality as:

https://www.trueinteractions.com/tint2/docs/WebView.html

It adds the additional functionality:

  • Cross-OS standard browser (rather than relying on WebKit or IE for your WebView).
  • Transparency support with hardware acceleration (just set the background-color to transparent on the HTML and BODY control as well as your window.)
  • Open/close the dev tools via chromium.devtools = true
  • New event 'status' (with the passed in status string)
  • New event 'console' (with the passed in console message, source, and line for the callback)

Install

Install from NPM:

$ npm install chromium

Or, Install from Github:

$ git clone https://github.com/trueinteractions/tint-chromium.git
$ cd tint-chromium
$ install.[bat|sh]

Example

require('Common');
Chromium = require('chromium');

var win = new Window();
var webview = new Chromium();
win.appendChild(webview);
webview.left = webview.right = webview.top = webview.bottom = 0;
webview.location = "https://www.trueinteractions.com/tint2/docs/";
win.visible = true;

Keywords

FAQs

Package last updated on 27 Apr 2016

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