datacore VS novel

Compare datacore vs novel and see what are their differences.

datacore

Work-in-progress successor to Dataview with a focus on UX and speed. (by blacksmithgu)

novel

Notion-style WYSIWYG editor with AI-powered autocompletion. (by steven-tey)
SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.
surveyjs.io
featured
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
datacore novel
18 15
1,216 11,313
- -
9.2 9.5
2 days ago 11 days ago
TypeScript TypeScript
MIT License Apache License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

datacore

Posts with mentions or reviews of datacore. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-06-16.

novel

Posts with mentions or reviews of novel. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-06-07.
  • Create your own content management system with Remix and Xata
    4 projects | dev.to | 7 Jun 2024
    // app/routes/api_.generate.tsx import { completion } from 'litellm'; import { ActionFunctionArgs } from '@remix-run/node'; export async function action({ request }: ActionFunctionArgs) { const encoder = new TextEncoder(); const { prompt } = await request.json(); const response = await completion({ n: 1, top_p: 1, stream: true, temperature: 0.7, presence_penalty: 0, model: 'gpt-3.5-turbo', messages: [ { role: 'system', content: 'You are an AI writing assistant that continues existing text based on context from prior text. ' + 'Give more weight/priority to the later characters than the beginning ones. ' + 'Limit your response to no more than 200 characters, but make sure to construct complete sentences.' // we're disabling markdown for now until we can figure out a way to stream markdown text with proper formatting: https://github.com/steven-tey/novel/discussions/7 // "Use Markdown formatting when appropriate.", }, { role: 'user', content: prompt } ] }); // Create a streaming response const customReadable = new ReadableStream({ async start(controller) { for await (const part of response) { try { const tmp = part.choices[0]?.delta?.content; if (tmp) controller.enqueue(encoder.encode(tmp)); } catch (e) { console.log(e); } } controller.close(); } }); // Return the stream response and keep the connection alive return new Response(customReadable, { // Set the headers for Server-Sent Events (SSE) headers: { Connection: 'keep-alive', 'Content-Encoding': 'none', 'Cache-Control': 'no-cache, no-transform', 'Content-Type': 'text/event-stream; charset=utf-8' } }); }
  • Brand new `Rlim` online markdown writing service
    5 projects | /r/Markdown | 13 Oct 2023
    novel editor based on TipTap
  • 🖊 I am building a pastebin alternative!
    1 project | dev.to | 10 Sep 2023
    The difference is I am gonna let users write notion like documents and then share it, unlike pastebin which only lets us share text. For writing documents, I'm gonna use Novel.sh. It is a WYSIWYG editor which provides interface and features similar to Notion. It also lets us use OpenAI API to integrate AI into it.
  • Ask HN: Which open-source editor would you choose to build something like Notion
    3 projects | news.ycombinator.com | 6 Sep 2023
    Probably tiptap.dev, here's a notion-like editor built with it: https://github.com/steven-tey/novel
  • Show HN: npm i novel – open-source Notion-style editor
    1 project | news.ycombinator.com | 2 Sep 2023
    I love the simplicity of it tbh, the homepage with it's builtin demo is just superb.

    https://novel.sh/

    Write ++ after the npm install or whatever, the homepage is an editable demo of the editor.

  • Launch HN: Tiptap (YC S23) – Toolkit for developing collaborative editors
    17 projects | news.ycombinator.com | 1 Aug 2023
    Tiptap is incredible! Built https://novel.sh/ with it and the extensiveness & API is chefs kiss! So proud of you guys and the YC funding is truly well-deserved! Congrats again!
  • Novel: Notion-style WYSIWYG editor with AI-powered autocompletion
    1 project | news.ycombinator.com | 19 Jul 2023
  • How to Write a Great Readme
    14 projects | news.ycombinator.com | 18 Jul 2023
    Great guide. One thing that seems to be missing is something I see in a lot of README's: a list of the core tech stack being used in the repo. Good examples here https://github.com/undb-xyz/undb#-tech-stack and here https://github.com/steven-tey/novel#tech-stack. Did you already consider adding this as part of the guide and decide against it, or was it just not something you thought to add?
  • How to make custom chatBot outputs rendered in markdown?
    1 project | /r/GPT | 22 Jun 2023
    I'm trying to customize https://github.com/steven-tey/novel 's amazing template. but currently output stream comes in plain text. and even it gives markdown or HTML code the text editor doesn't render them accordingly.
  • Show HN: I made an open-source Notion-style WYSYWIG editor
    1 project | /r/patient_hackernews | 16 Jun 2023

What are some alternatives?

When comparing datacore and novel you can also consider the following projects:

obsidian-db-folder - Obsidian Plugin to Allow Notion like database based on folders

TipTap - A 3d-printed bipedal robot. A low-cost desktop option for semi-direct drive walking research.

obsidian-dataview - A data index and query language over Markdown files, for https://obsidian.md/.

BlockNote - A React Rich Text Editor that's block-based (Notion style) and extensible. Built on top of Prosemirror and Tiptap.

obsidian-outliner - Work with your lists like in Workflowy or RoamResearch

ai - Build AI-powered applications with React, Svelte, Vue, and Solid

RVS_PersistentPrefs - A Simple Class For Basic Persistent Storage

obsidian-simple-note-review - Simple, customizable plugin for easy note review, resurfacing & repetition in Obsidian.md.

yjs - Shared data types for building collaborative software

obsidian-columns

y-crdt - Rust port of Yjs

SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.
surveyjs.io
featured
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured