
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
@anyline/anyline-js
Advanced tools
Anyline is a mobile OCR SDK, which can be customized to scan all kinds of numbers, characters, text and codes.
Web SDK is a standalone Anyline version for the browser.
Visit js.anyline.com for an official demo of Web SDK.
For full documentation visit: https://documentation.anyline.com/web-sdk-component/latest/index.html
To test Anyline download the Example Sheets with testing material: https://anyline.com/samples
npm install @anyline/anyline-js
anylinejs
to your webserver. In some cases you need to configure your webserver to serve data
and wasm.gz
files.Web SDK has to be served from a web server that supports HTTPS.
import { init } from '@anyline/anyline-js';
Alternatively you can also directly import anyline.js
using a script tag:
<script src="anyline.js"></script>
This will expose anylinejs to the window scope:
const { init } = window.anylinejs;
const anyline = init({
preset: 'meter', // id, ocr, ehic, ...
license: 'enter_your_license_key_here',
// html container where anylineJS should be mounted to
element: document.getElementById('root'),
// location of the data files from step 1 (can also be an https link)
anylinePath: '../anylinejs',
});
anyline.startScanning().catch((e) => {
alert(e.message);
});
anyline.onResult = (result) => {
console.log(result)
};
In order to use preloading update your configuration as shown below and call the preload method. Example
const anyline = init({
...
preload: true,
...
});
anyline.preload();
Go to https://anyline.com/request/contact for a test-license When you've received a license for your domain, edit your host file to route your domain to localhost. Then:
npm run demo
Visit http://yourdomain.com:8080/demo
or
npm run demo:network
In this case the HTTPS server uses a self-generated certificate so you might need to bypass the security measures of your browser. With a proper test-license issued for your internal ip-address you can test it on other devices on the network (i.E. for smartphone testing).
You can access the types by importing the Types
object
import { Types } from '@anyline/anyline-js';
FAQs
Anyline Web SDK
The npm package @anyline/anyline-js receives a total of 1,077 weekly downloads. As such, @anyline/anyline-js popularity was classified as popular.
We found that @anyline/anyline-js demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
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.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.