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

dio.js

Package Overview
Dependencies
Maintainers
1
Versions
97
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dio.js - npm Package Versions

1
10

8.2.0-alpha.1

Diff

thysultan
published 8.2.0-alpha.0 •

thysultan
published 8.2.0-alpha •

thysultan
published 8.1.1 •

Changelog

Source

8.1.1 (21 November 2017)

  • Improvements to treatment of static cached/hoisted children.
thysultan
published 8.1.0 •

Changelog

Source

8.1.0 (19 November 2017)

  • Adds top-level API createFactory to create element or renderer factories.
  • Adds Children.find and Children.filter to the top-level Children API.
  • Adds support for cross-realm element construction/consumption.
  • Improvements to the reconciler.
  • Improves importing async components with import(...).
  • Fix #39 hydration of differing text node length.
  • Fix #40 improves handling static hoisted elements.
createFactory

The createFactory API can be used to create element factories and additionally provides an interface to create client renderers that can target different platforms/targets.

Children.find

The Children.find API works like the Array.find API in that it allows you find a single element from the opaque children data-structure.

Children.filter

The Children.filter API works like the Array.filter API in that it allows you filter elements from the opaque children data-structure.

Reconciler Improvements

The reconciler has gone through some improvments that aim to insure the shorterst path is taken to reach a reconciled state.

Import(...)

This release includes improvements to the way(syntax sugar) you can dynamically import components.

// A.js
export default class {
	render() {}
}
// Before
class {
	render() {
		return import('./A.js').then(A => A.default)
	}
}

// After
class {
	render() {
		return import('./A.js')
	}
}
thysultan
published 8.1.0-rc •

thysultan
published 8.1.0-beta.0 •

thysultan
published 8.1.0-beta •

thysultan
published 8.1.0-alpha.3 •

thysultan
published 8.1.0-alpha.2 •

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