Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [ 16, 20, 'lts/*', 'latest' ]
node-version: [ 20, 22, 24, 'lts/*' ]
steps:
- uses: actions/checkout@v4
-
Expand Down
9 changes: 9 additions & 0 deletions .markdownlint-cli2.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
'use strict';

const sharedStandards = require('@silvermine/standardization/.markdownlint-cli2.shared.cjs');

module.exports = {

...sharedStandards,

};
3 changes: 0 additions & 3 deletions .markdownlint.json

This file was deleted.

2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20.12.2
24.12.0
31 changes: 23 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,34 @@
# fsaba

[![NPM Version](https://img.shields.io/npm/v/@silvermine/fsaba.svg)](https://www.npmjs.com/package/@silvermine/fsaba)
[![License](https://img.shields.io/github/license/silvermine/fsaba.svg)](./LICENSE)
[![Build Status](https://travis-ci.com/silvermine/fsaba.svg?branch=master)](https://travis-ci.com/silvermine/fsaba)
[![Coverage Status](https://coveralls.io/repos/github/silvermine/fsaba/badge.svg?branch=master)](https://coveralls.io/github/silvermine/fsaba?branch=master)
[![Dependency Status](https://david-dm.org/silvermine/fsaba.svg)](https://david-dm.org/silvermine/fsaba)
[![Dev Dependency Status](https://david-dm.org/silvermine/fsaba/dev-status.svg)](https://david-dm.org/silvermine/fsaba#info=devDependencies&view=table)
[![Conventional Commits](https://img.shields.io/badge/Conventional%20Commits-1.0.0-yellow.svg)](https://conventionalcommits.org)
[![NPM Version][npm-version]][npm-version-url]
[![License][license-badge]][license-url]
[![Coverage Status][coverage-badge]][coverage-url]
[![Conventional Commits][conventional-commits-badge]][conventional-commits-url]

[npm-version]: https://img.shields.io/npm/v/@silvermine/fsaba.svg
[npm-version-url]: https://www.npmjs.com/package/@silvermine/fsaba
[license-badge]: https://img.shields.io/github/license/silvermine/fsaba.svg
[license-url]: ./LICENSE
[coverage-badge]: https://coveralls.io/repos/github/silvermine/fsaba/badge.svg?branch=master
[coverage-url]: https://coveralls.io/github/silvermine/fsaba?branch=master
[conventional-commits-badge]: https://img.shields.io/badge/Conventional%20Commits-1.0.0-yellow.svg
[conventional-commits-url]: https://conventionalcommits.org

## What?

FSABA (Fine-grained Subject-Action-Based Authorization) is a policy-based authorization
library. It allows you to define roles with policies that specify what actions subjects
(users) can perform on which resources, with optional conditions for fine-grained access
control.

## Why?

Building authorization logic from scratch is error-prone and often leads to inconsistent
access control across an application. FSABA provides a declarative, testable approach to
authorization that separates policy definitions from application code, making it easier to
reason about and audit permissions.

## License

This software is released under the MIT license. See [the license
file](LICENSE) for more details.

Loading