
Research
PyPI Package Disguised as Instagram Growth Tool Harvests User Credentials
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
angular-web-sqlite
Advanced tools
angular-web-sqlite is an Angular service that wraps the @sqlite.org/sqlite-wasm module. This Angular service takes care of the declaration and communication with a web worker, essential for utilizing the Origin Private File System (OPFS) storage back-en
angular-web-sqlite is an Angular service that wraps the @sqlite.org/sqlite-wasm module. This Angular service takes care of the declaration and communication with a web worker, essential for utilizing the Origin Private File System (OPFS) storage back-end.
Install the library using npm:
npm install angular-web-sqlite
The installation of the module modifies the angular.json file to incorporate precompiled files.
This setup guarantees that the essential assets—the SQLite working script (sqlite-worker.js) and files from the @sqlite.org/sqlite-wasm module, utilized by the library internally—are included in the output directory during the build process.
Ensure that the 'sqlite-client' folder is copied to the project's output directory, www.
"projects": {
"app": {
...
"architect": {
...
"build": {
...
"options": {
"assets": [
...
{
"glob": "**/*.js",
"input": "./node_modules/angular-web-sqlite/src/lib/assets",
"output": "./sqlite-client/"
},
{
"glob": "**/*",
"input": "./node_modules/@sqlite.org/sqlite-wasm/sqlite-wasm/jswasm/",
"output": "./sqlite-client/"
}
]
}
...
},
"serve": {
...
"options": {
...
"headers": {
"Cross-Origin-Opener-Policy": "same-origin",
"Cross-Origin-Embedder-Policy": "require-corp"
}
}
}
}
}
}
init(dbName: string): Promise<any> //Initializes the SQLite database with the specified name.
executeSql(sql: string, params: any[]): Promise<any> //Executes a single SQL query with optional parameters.
batchSql(sqls: [index: number]: [string, any[]]): Promise<any> //Executes a batch of SQL statements as a transaction.
import { WebSqlite } from 'angular-web-sqlite';
@Injectable()
export class YourService {
constructor(
private webSqlite: WebSqlite
) { }
async initializeDatabase(dbName: string) {
await this.webSqlite.init(dbName);
}
async executeQuery() {
const sql = 'SELECT * FROM your_table';
const params = [];
const result = await this.webSqlite.executeSql(sql, params);
// Process the result as needed
}
async batchSqlOperations() {
const sqls = [
["CREATE TABLE IF NOT EXISTS your_table (a TEXT, b TEXT)", []],
["CREATE TABLE IF NOT EXISTS your_table2 (c TEXT, d TEXT)", []],
....];
const result = await this.webSqlite.batchSql(sqls);
// Process the result as needed
}
}
FAQs
angular-web-sqlite is an Angular service that wraps the @sqlite.org/sqlite-wasm module. This Angular service takes care of the declaration and communication with a web worker, essential for utilizing the Origin Private File System (OPFS) storage back-en
The npm package angular-web-sqlite receives a total of 4 weekly downloads. As such, angular-web-sqlite popularity was classified as not popular.
We found that angular-web-sqlite 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
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
Product
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
Security News
Research
Socket uncovered two npm packages that register hidden HTTP endpoints to delete all files on command.