Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
<script src="https://cdn.jsdelivr.net/npm/evtscan/dist/evtscan.js"></script>
<!-- OR -->
<script src="https://unpkg.com/evtscan/dist/evtscan.js"></script>
<script>
const evtScan = EvtScan.new();
// Or
// const evtScan = new EvtScan();
// Or [with homemade apiCaller]
// const evtScan = new EvtScan({ endpoint: 'https://some-evtscans.io/api/' });
const blocks = evtScan.block();
console.log(await blocks.next()); // it will print the first 10 blocks
console.log(await blocks.next()); // then next 10-19[included] blocks
const b = blocks.data[0]; // will return the 10th block since the method is called twice
console.log(b); // view the block
const prev = await b.prev(); // get the previous block
console.log(prev); // view the block
assert(prev instanceof EvtScan.Classes.Block); // they both belones to Block class
const { Block } = EvtScan.Classes;
const otherBlock = await (new Block().update(BLOCK_ID));
// Or
// const otherBlock = new Block();
// await otherBlock.update(BLOCK_ID));
// enjoy ...
</script>
yarn add evtscan
# or
# npm install --save evtscan
import EvtScan from 'evtscan';
const evtScan = new EvtScan();
Or, if you want to use your own upstream:
import EvtScan, { ApiCaller } from 'evtscan';
const apiCaller = ApiCaller('https://some-evtscans.io/api/');
const evtScan = new EvtScan({ apiCaller });
// or
// const evtScan = new EvtScan({ endpoint: 'https://some-evtscans.io/api/' });
FAQs
The js(ts) SDK to help developer using evtscan api.
The npm package evtscan receives a total of 0 weekly downloads. As such, evtscan popularity was classified as not popular.
We found that evtscan demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.