Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@ied/dashboard
Advanced tools
[![styled with prettier](https://img.shields.io/badge/styled_with-prettier-ff69b4.svg)](https://github.com/prettier/prettier)
This project was bootstrapped with Create React App.
git clone git@github.com:inextensodigital/react-boilerplate.git my-project
git remote remove origin
git remote add origin git@github.com:inextensodigital/my-project.git
{
"type": "front-end",
"domain": "inextenso.io",
"appName": "react-boilerplate",
"env": ["fr", "dk"]
}
If you're using this boilerplate you just need to update the config url
from step 3, if you want to add Sentry to your project follow this guide.
index.html
, it's our client for sending reports to Sentry+ <script src="https://cdn.ravenjs.com/3.18.1/console/raven.min.js" crossorigin="anonymous"></script>
.eslintrc
+ "globals": {
+ "Raven": true
+ }
index.js
with the correct project url+ if (process.env.NODE_ENV === 'production') {
+ const options = {
+ release: process.env.REACT_APP_RELEASE,
+ tags: {
+ 'app.env': process.env.REACT_APP_ENV,
+ 'app.release': process.env.REACT_APP_RELEASE,
+ },
+ }
+ Raven.config(
+ 'https://e63b70eab09b41108708d8c6207c128d@sentry.io/226827',
+ options,
+ ).install()
+ }
componentDidCatch
at the root component it will catch any error in the components tree+ componentDidCatch = (error, info) => {
+ Raven.captureException(error, {
+ extra: info,
+ })
+ console.error(error, info)
+ }
If you're using Redux on your project you can add a middleware to get more insight.
We follow the javascript rules published by airbnb with some adjustments you can explore here.
In order to have a good continuous integration we aim to follow A successful Git branching model, by Vincent Driessen.
All branches on the upstream will be tested and deployed to an S3 bucket automatically in order to provide a testable version of the work in progress at any time.
All versions of an application are deployed to the same AWS S3 bucket at different paths.
my-bucket/master/FR
my-bucket/master/DK
my-bucket/dev/FR
my-bucket/dev/DK
Cloudfront is responsible to expose the application to the web, each applications as its own distribution.
A non exhaustive list of libraries we love, and we have crash tested.
FAQs
[![styled with prettier](https://img.shields.io/badge/styled_with-prettier-ff69b4.svg)](https://github.com/prettier/prettier)
The npm package @ied/dashboard receives a total of 0 weekly downloads. As such, @ied/dashboard popularity was classified as not popular.
We found that @ied/dashboard demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 8 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.