Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
@kamiazya/ngx-speech-recognition
Advanced tools
[![NPM](https://nodei.co/npm/@kamiazya/ngx-speech-recognition.png?downloads=true)](https://nodei.co/npm/@kamiazya/ngx-speech-recognition/)
Angular 5+ speech recognition service (based on browser implementation such as Chrome).
Run ng serve
for a demo server. Navigate to http://localhost:4200/
. The app will automatically reload if you change any of the source files.
import { Component } from '@angular/core';
import { RxSpeechRecognitionService } from '@kamiazya/ngx-speech-recognition';
@Component({
selector: 'demo-rx',
templateUrl: './rx.component.html',
styleUrls: ['./rx.component.css'],
providers: [
RxSpeechRecognitionService,
],
})
export class RxComponent {
message = '';
constructor(
private service: RxSpeechRecognitionService,
) { }
listen() {
this.service
.listen()
.pipe(RxSpeechRecognitionService.resultList)
.subscribe((list: SpeechRecognitionResultList) => {
this.message = list.item(0).item(0).transcript;
console.log('RxComponent:onresult', this.message, list);
});
}
}
FAQs
Angular 5+ speech recognition service (based on browser implementation such as Chrome).
The npm package @kamiazya/ngx-speech-recognition receives a total of 113 weekly downloads. As such, @kamiazya/ngx-speech-recognition popularity was classified as not popular.
We found that @kamiazya/ngx-speech-recognition 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.