All Projects → pereorga → Minimalist Web Notepad

pereorga / Minimalist Web Notepad

Minimalist Web Notepad

Programming Languages

javascript
184084 projects - #8 most used programming language

Labels

Projects that are alternatives of or similar to Minimalist Web Notepad

Re Editor
一个开箱即用的React富文本编辑器 🚀re-editor
Stars: ✭ 367 (-11.99%)
Mutual labels:  editor
Wxhexeditor
wxHexEditor official GIT repo
Stars: ✭ 381 (-8.63%)
Mutual labels:  editor
Etengine
Realtime 3D Game-Engine with a focus on space sim. Written in C++ 14
Stars: ✭ 408 (-2.16%)
Mutual labels:  editor
Luaperfect
A pure C++ Lua IDE project, aimed to be the fastest and lightest Lua IDE in the world.
Stars: ✭ 368 (-11.75%)
Mutual labels:  editor
Marktext
📝A simple and elegant markdown editor, available for Linux, macOS and Windows.
Stars: ✭ 22,894 (+5390.17%)
Mutual labels:  editor
Ivim
A vim port to iOS.
Stars: ✭ 389 (-6.71%)
Mutual labels:  editor
For Editor
for-editor - A markdown editor based on React
Stars: ✭ 358 (-14.15%)
Mutual labels:  editor
Pixelcraft
A Pixel Art Editor
Stars: ✭ 413 (-0.96%)
Mutual labels:  editor
Heimer
Heimer is a simple cross-platform mind map, diagram, and note-taking tool written in Qt.
Stars: ✭ 380 (-8.87%)
Mutual labels:  editor
Markdowneditor
Lightweight markdown editor written for windows,only one GREEN exe file
Stars: ✭ 403 (-3.36%)
Mutual labels:  editor
React Md Editor
A simple markdown editor with preview, implemented with React.js and TypeScript.
Stars: ✭ 374 (-10.31%)
Mutual labels:  editor
Mle
Flexible terminal-based text editor (C)
Stars: ✭ 378 (-9.35%)
Mutual labels:  editor
Interactive Examples
Home of the MDN live code editor interactive examples
Stars: ✭ 389 (-6.71%)
Mutual labels:  editor
Ant Design Landing
🚵 Landing Pages of Ant Design System
Stars: ✭ 4,425 (+961.15%)
Mutual labels:  editor
Mathdown
Collaborative markdown with math
Stars: ✭ 410 (-1.68%)
Mutual labels:  editor
Cope
A modern IDE for writing classical Chinese poetry 格律诗编辑程序
Stars: ✭ 362 (-13.19%)
Mutual labels:  editor
Drawerjs
A customizable WYSIWYG HTML canvas editor.
Stars: ✭ 383 (-8.15%)
Mutual labels:  editor
Mathlive
A web component for easy math input
Stars: ✭ 416 (-0.24%)
Mutual labels:  editor
Draftail
📝🍸 A configurable rich text editor built with Draft.js
Stars: ✭ 413 (-0.96%)
Mutual labels:  editor
Editormd
Markdown 编辑器 Editor.md for Typecho
Stars: ✭ 389 (-6.71%)
Mutual labels:  editor

Minimalist Web Notepad

This is an open source clone of notepad.cc, which is now defunct.

See demo at https://notes.orga.cat or https://notes.orga.cat/whatever.

A version that allows for optional encryption using the Web Crypto API is available at the encryption branch.

Installation

At the top of index.php file, change $base_url variable to point to your site.

Make sure the web server is allowed to write to the _tmp directory.

On Apache

You may need to enable mod_rewrite and set up .htaccess files in your site configuration. See How To Set Up mod_rewrite for Apache.

On Nginx

To enable URL rewriting, put something like this in your configuration file:

If notepad is in the root directory:

location / {
    rewrite ^/([a-zA-Z0-9_-]+)$ /index.php?note=$1;
}

If notepad is in a subdirectory:

location ~* ^/notes/([a-zA-Z0-9_-]+)$ {
    try_files $uri /notes/index.php?note=$1;
}

Docker

Build the container:

docker build -t minimalist-web-notepad .

Start the container:

docker run -d --name minimalist-web-notepad -p 80:80 minimalist-web-notepad

Show logs:

docker logs -f minimalist-web-notepad

Stop the container:

docker stop minimalist-web-notepad

Alternatively, docker-compose can also be used:

docker-compose up -d

and

docker-compose down

Environment variables

MWN_BASE_URL The base URL for redirection and assets. Defaults to ''.

MWN_SAVE_PATH The path to save the notes to. Relative paths are relative to index.php location.

Screenshots

Firefox

IE

Edge

Chrome Android

Firefox Android

Copyright and license

Copyright 2012 Pere Orga [email protected]

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this work except in compliance with the License. You may obtain a copy of the License at:

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].