New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More

isofire

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

isofire

### Link Isofire within your Project 1. Link Isofire to your Project ``` cd PATH_TO/isofire npm link

  • 0.4.10
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created

Development

  1. Link Isofire to your Project
cd PATH_TO/isofire
npm link

cd PATH_TO/project
npm link isofire
  1. Link your Project's rxjs to Isofire (the other way around)
cd node_modules/rxjs
npm link

cd PATH_TO/isofire
npm link rxjs

npm start

Start a new App

mkdir 11bookings && cd 11bookings
code .
git init
git remote add origin git@github.com:rechenberger/11bookings.git
ng new --style=scss --routing --skip-tests --directory client eleven-bookings
code .gitignore
# dependencies
**/node_modules

# IDEs and editors
/.idea
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace

# IDE - VSCode
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json

# System Files
.DS_Store
Thumbs.db

# VS Code Share (?)
.vs/slnx.sqlite

# Firebase Tools Cache
.firebase
mv client/package.json package.json
mv client/package-lock.json package-lock.json
mv client/node_modules/ node_modules
mv client/angular.json angular.json
sed -i '' s/src/client\\/src/g angular.json
mv client/tslint.json tslint.json
sed -i '' s/..\\/tslint.json/..\\/..\\/tslint.json/g client/src/tslint.json
code tslint.json
# Customize the file as you like

# remove e2e form angular.json to do:
ng lint --fix
ng add @angular/material
npm i rxjs-compat
code client/src/rxjs-compat.ts
# ... add your imports
code client/src/main.ts
# add the following:
import './rxjs-compat'

FAQs

Package last updated on 14 Nov 2019

Did you know?

Socket

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.

Install

Related posts