Skip to content

Instantly share code, notes, and snippets.

View florestankorp's full-sized avatar
🇳🇱

Florestan Korp florestankorp

🇳🇱
View GitHub Profile
@florestankorp
florestankorp / README.md
Last active July 11, 2024 09:36
Scenario based API mocking with `ng-apimock`

Scenario based API mocking with ng-apimock

Overview

ng-apimock is a tool that provides scenario based API mocking. It can be used to test and develop applications without the need of a backend. Alternatively you can also chose to let certain calls through to the actual backend and apply mocking selectively.

@florestankorp
florestankorp / .eslintrc.json
Created June 17, 2024 21:59
ESLint config (workspace)
{
"root": true,
"ignorePatterns": ["**/*"],
"plugins": ["@nx"],
"overrides": [
{
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": ["./tsconfig.base.json"]
@florestankorp
florestankorp / .eslintrc.json
Last active June 18, 2024 07:40
ESLint config (frontend)
{
"extends": ["../../../../.eslintrc.json"],
"ignorePatterns": ["!**/*"],
"overrides": [
{
"files": ["*.ts"],
"rules": {
"@angular-eslint/directive-selector": [
"error",
{
@florestankorp
florestankorp / my-app.ts
Last active January 29, 2025 15:46
Minimal example of effect
/* eslint-disable max-classes-per-file */
/* eslint-disable @angular-eslint/component-selector */
import {
ChangeDetectionStrategy,
Component,
effect,
inject,
Injectable,
OnInit,