npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ng-webworker-helper

v0.0.2

Published

a helper to use webworker in an angular application

Downloads

3

Readme

ng-webworker-helper

This project is an extension for Angular that should make working with WebWorker simple. This project enables you to run code in a seperate thread and make the UI run faster.

Installation

To use the project use

npm install ng-webworker-helper -S
npm install concurrently -D

Building the webworker files

You can now use Webworkers, but you have to enable Angular to transpile your webworker files into a seperate .js file.

First of all copy the files webworker.webpack.config.js and webworker.webpack.dev.config.js in your projects root folder. Then copy the file src/tsconfig.worker.json to your src folder.

Now add this entries to the angular.json of your project:

{
 ...,
 "architect": {
    ...,
    "build-worker": {
      "builder": "@angular-devkit/build-webpack:webpack",
      "options": {
        "webpackConfig": "./webworker.webpack.config.js"
      }
    },
    "dev-worker": {
      "builder": "@angular-devkit/build-webpack:webpack",
      "options": {
        "webpackConfig": "./webworker.webpack.dev.config.js"
      }
    },
    ...
  }
}

In your package.json add the entries

"build-worker": "ng run <projectname>:build-worker",
"dev-worker": "ng run <projectname>:dev-worker"

to the scripts section.

Change the scripts build and start like this:

"start": "concurrently --kill-others \"npm run dev-worker\" \"ng serve\"",
"build": "npm run build-worker && ng build",

Add provider in angular

In your app.module.ts add NgWebworkerService in the providers section.

Usage

To use webworkers you have to create the folder worker in the src directory of your project. Create a file named main.worker.ts with the following content:

import {registerWebworker, WebworkerHandlerBase} from 'ng-webworker-helper';

registerWebworker({
  'test': TestWorker
});

Now you can create files with custom worker code for example test.worker.ts:

class TestWorker extends WebworkerHandlerBase {
  run(data: number): number {
    const before = new Date();
    let count = 0;

    this.send('das ist ein test');

    while (true) {
      count++;
      const now = new Date();
      if (now.valueOf() - before.valueOf() > data) {
        break;
      }
    }

    return count;
  }
}

You can execute the function in a worker using:

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.less']
})
export class AppComponent {
  constructor(private webworkerService: NgWebworkerService) {
  
    //This executes code in TestWorker 
    this.webworkerService.execute('test', 10000).subscribe(console.log);

    //This executes a custom function in a webworker thread
    this.webworkerService.executeFunction((t) => {
      return t * 10;
    }, 100).subscribe(console.log);

  }
}