Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
@screeb/sdk-angular
Advanced tools
Screeb's browser sdk, optimized for Angular.
Continuous Product Discovery, Without the Time Sink.
Screeb is the only Continuous Product Discovery platform that lets you analyse users' behaviour, ask in-app questions, recruit people for interviews and analyse data in a blink with AI.
This library is published in the NPM registry and can be installed using any compatible package manager.
npm install @screeb/sdk-angular --save
# For Yarn, use the command below.
yarn add @screeb/sdk-angular
Basic usage:
In your app bootstrap and/or app module:
import { ScreebModule } from "@screeb/sdk-angular";
@NgModule({
imports: [
// ...
ScreebModule.forRoot({
autoInit: true,
websiteId: "<your-website-id>",
userId: "<your-user-id>",
userProperties: {
firstname: '<user-firstname>',
lastname: '<user-lastname>',
plan: '<user-plan>',
last_seen_at: new Date(),
authenticated: true
}
})
// ...
]
})
export class AppModule {}
Then, if you need to use Screeb SDK API, in any module:
// App
import { Component, OnInit } from '@angular/core';
import { ScreebModule } from "@screeb/sdk-angular";
@Component({
selector: 'app',
template: `...`
})
export class AppComponent implements OnInit {
constructor(
public screeb: Screeb
){}
ngOnInit() {
this.screeb.eventTrack("screeb-sdk-angular-example started", {
test: 123,
});
}
}
For a working example, see our Screeb Angular SDK example app.
For a more advanced usage and a complete API documentation, see documentation generated from source files.
For further information, see our developper documentation.
For any issues, please contact our support team at support@screeb.com.
All third party contributors acknowledge that any contributions they provide will be made under the same open source license that the open source project is provided under.
Released under MIT License.
FAQs
Screeb's browser sdk, optimized for Angular.
The npm package @screeb/sdk-angular receives a total of 29 weekly downloads. As such, @screeb/sdk-angular popularity was classified as not popular.
We found that @screeb/sdk-angular 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.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.