
Security News
Federal Audit Finds NIST Wasted Funds With No Plan to Clear NVD Backlog
Federal audit finds NIST lacked a plan to clear the NVD backlog, wasted funds on duplicate work, and delayed use of CISA data.
@neoprospecta/angular-local-database
Advanced tools
First way:
Install dependence directly from NPM, running this command on terminal in the project' root folder.
npm install @neoprospecta/angular-local-database --save
Second way:
Declare angular-local-database as dependence into package.json file.
"@neoprospecta/angular-local-database":"^4.0.0"
Install dependence, running this command on terminal in the project's root folder.
npm install
import { LocalDataBaseModule } from '@neoprospecta/angular-local-database';
@NgModule({
...
imports: [
LocalDataBaseModule
],
...
})
export class AppModule { }
import { LocalDataBaseService } from '@neoprospecta/angular-local-database';
@Component(...)
export class AppComponent {
...
constructor(
private localDataBaseService: LocalDataBaseService
){ }
...
}
this.localDataBaseService.set('key', 'value');
/* First way: Omittng 3th parameter */
this.localDataBaseService.set('key', 'value');
/* Second way: Passing 3th parameter */
this.localDataBaseService.set('key', 'value', true);
this.localDataBaseService.set('key', 'value', false);
this.localDataBaseService.get('key');
this.localDataBaseService.remove('key');
| Feature | Function |
|---|---|
| set | (key: string, value: any, persist: boolean = true): boolean |
| get | (key: string): void |
| remove | (key: string): boolean |
© Neoprospecta | MIT LICENSE
FAQs
Angular local database
The npm package @neoprospecta/angular-local-database receives a total of 2 weekly downloads. As such, @neoprospecta/angular-local-database popularity was classified as not popular.
We found that @neoprospecta/angular-local-database 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
Federal audit finds NIST lacked a plan to clear the NVD backlog, wasted funds on duplicate work, and delayed use of CISA data.

Research
/Security News
A mini Shai-Hulud campaign compromised Red Hat Cloud Services npm packages to steal developer and CI/CD secrets during installation.

Research
/Security News
The North Korean malware loader hides in a Packagist-listed package and its GitHub branch to fetch and execute remote code in a likely Contagious Interview-style lure.