Skip to content

Hypenexy/WriteNote

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 

Repository files navigation

WriteNote

WriteNote is an online note editor, capable of creating rich text, drawings, presentations, web sites and more. It comes with an Admin panel and a server.

A preview of how the app looks like with an open note containing text

Server

A view of the console starting up and displaying a help menu

Requirements

A MongoDB server.

A MySQL server.

Git is optional but you can use it to download this repository, otherwise download it by pressing [<> Code] then [Download ZIP] then extract it.

Node.JS is required to run the server.

ipgeolocation and OpenWeather API Keys are required for weather service. They are both free but service might be subject to change.

I recommend using VS Code to view and work on this project.

These are my VS Code settings.json to ease the development a little:

{
    "window.commandCenter": false,
    "git.enableSmartCommit": true,
    "git.confirmSync": false,
    "git.autofetch": true,
    "editor.stickyScroll.enabled": false,
    "workbench.editor.editorActionsLocation": "titleBar",
    "remote.autoForwardPorts": false,
    "editor.unicodeHighlight.nonBasicASCII": false,
    "liveServer.settings.donotShowInfoMsg": true,
    "actionButtons": {

        "commands": [
            {
                "name": "Start server",
                "cwd": "${workspaceFolder}/Server",
                "command": "node index.js",
            }
        ],
        "defaultColor": "white",
        "reloadButton": "↻",
        "loadNpmCommands": false
    },
    "liveServer.settings.root": "/App",
    "[json]": {
        "editor.defaultFormatter": "vscode.json-language-features"
    },
    "workbench.activityBar.location": "top"
}

These extensions are an extension to my settings to help with fast development.

Live Server Preview changes to the front-end in real-time

VsCode Action Buttons Adds the "Start server" button that's specified in the settings.json

Rainbow CSV Highlight CSV files

Markdown Preview Enhanced Used to make this readme so pretty useful to me

Installation

The following commmands are run in a terminal.

Download this repository and enter its folder

git clone https://github.com/Hypenexy/WriteNote.git
cd WriteNote

Install server dependencies

cd Server
npm i

Create the secret files with API keys and databases in the following locations There are example files in the same locations with ".example" at the end

./Server/code/databases/dbSettings.json
./Server/code/user/APIKeys.json

Run the server and setup databases

node index.js

When the server fully loads type

setup database

Restart the server for good measure

exit

You can now enjoy your very own build of WriteNote

If you installed all the extensions and my settings.json then you can press [Start server] in the bottom left and [Go Live] in the bottom right to start the server and client.

About

A new, simpler way to write a note.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published