
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
codeeffects
Advanced tools
Code Effects is a free web-based, zero-dependency business rules editor for authoring human-readable business rules that your .NET applications evaluate with the Code Effects Rule Engine.
Version 6.2.11 unifies the product and simplifies implementation while keeping the editor fast, intuitive, and framework-friendly (React, Angular, Vue, plain JS).
This package ships the client-side functionality of the Rule Editor:
codeeffects.editor.js,codeeffects.common.css(core), andcodeeffects.light.css(Light theme).
The Dark theme will be introduced in a later version.
codeeffects.editor.js � the main editor script (ES module).codeeffects.common.css � core editor styles (required).codeeffects.light.css � Light theme (optional but recommended).Do not rename the CSS classes in the core CSS; you may override them in your app/theme styles if needed.
npm install codeeffects
<link rel="stylesheet" href="/node_modules/codeeffects/codeeffects.common.css">
<link rel="stylesheet" href="/node_modules/codeeffects/codeeffects.light.css">
<script type="module" src="/node_modules/codeeffects/codeeffects.editor.js"></script>
<script>
//See implementation article for details: https://codeeffects.com/decision-automation/business-rule-implementation
</script>
If you prefer a version-agnostic path in production, keep the exact filenames in your build pipeline and symlink or copy them to unversioned names during deployment.
// App.tsx
import { useEffect, useRef } from 'react';
import '../../node_modules/codeeffects/codeeffects.common.css';
import '../../node_modules/codeeffects/codeeffects.light.css';
import { $rule, $ce } from 'codeeffects';
//See Code Effects demo projects for implementation details at https://codeeffects.com/decision-automation/business-rule-demo-project
// app.component.ts
import { Component, ElementRef, OnDestroy, AfterViewInit } from '@angular/core';
import '../../node_modules/codeeffects/codeeffects.common.css';
import '../../node_modules/codeeffects/codeeffects.light.css';
import { $rule, $ce } from 'codeeffects';
//See Code Effects demo projects for implementation details at https://codeeffects.com/decision-automation/business-rule-demo-project
codeeffects.common.css.codeeffects.light.css (Dark coming soon).Read the documentation article for this version for details on the new features, bug fixes, and performance enhancements introduced in version 6.2.11.
<script> includes with type="module" or import it in your bundler.For detailed migration instructions see: https://codeeffects.com/Version/Upgrade-Rule-Editor-To-Net-Standard/5503.
Type definitions are shipped inline with the module where applicable. If your project uses strict TS and you need additional types for editor options or callbacks, declare an ambient module augmentation in your app until full typings are published for your scenario.
type="module" is supported or use your bundler�s legacy build output.https://codeeffects.com/decision-automationhttps://codeeffects.com/decision-automation/business-rules-editor-implementationhttps://codeeffects.com/business-rules-engine-demoContact: https://codeeffects.com/support
� 2025 Code Effects Software, LLC. All rights reserved.
FAQs
Rule Editor for Code Effects Business Rules Engine
The npm package codeeffects receives a total of 160 weekly downloads. As such, codeeffects popularity was classified as not popular.
We found that codeeffects demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.