New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@dytab/ngx-blocknote

Package Overview
Dependencies
Maintainers
2
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dytab/ngx-blocknote

This project is an Angular implementation of [BlockNote](https://github.com/TypeCellOS/BlockNote). It aims to provide the same functionality and appearance as the original React project but with the added benefit of being fully integrated into the Angular

latest
Source
npmnpm
Version
1.12.2
Version published
Weekly downloads
50
21.95%
Maintainers
2
Weekly downloads
 
Created
Source

ngx-blocknote

This project is an Angular implementation of BlockNote. It aims to provide the same functionality and appearance as the original React project but with the added benefit of being fully integrated into the Angular framework.

Installation

npm install @dytab/ngx-blocknote

Basic Setup

import { CommonModule } from '@angular/common';
import { Component } from '@angular/core';
import { BnaEditorComponent } from '@dytab/ngx-blocknote';

@Component({
  imports: [CommonModule, BnaEditorComponent],
  template: ` <bna-editor (contentChanged)="readTextFromEditor($event)" /> `,
})
export class BasicSetupExample {
  editorContent!: Block[];

  readTextFromEditor(blocks: Block[]) {
    this.editorContent = blocks;
  }
}

Further Examples

For more examples and detailed guides, please visit the documentation website.

Features

BlocksStatus
Headings
Basic Blocks
Table
Media
Emojis
Formatting ToolbarStatus
Block Type Select
Bold
Italic
Unterline
Strikethrough
Align text left✅️
Align text center
Align text right✅️
Text Colors✅️
Nest Block
Unnest Block❌️
Create Link✅️

License

This project is distributed under the terms of the MIT License.

FAQs

Package last updated on 27 Jan 2026

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