A simple editor with special use in coding. It is intended as a replacement for Atom hence the name.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Pixdigit 64ca4344fc
added README
4 years ago
frontend added README 4 years ago
.gitignore added sass to configuration 4 years ago
.jshint changed over to vue/webpack 4 years ago
LICENSE init repo with License 4 years ago
README.md added README 4 years ago
debug.sh added wails runtime to backend and added helper script 4 years ago
fileTree.go added file saving 4 years ago
go.mod updated wails runtime to fix events issue 4 years ago
go.sum updated wails runtime to fix events issue 4 years ago
main.go updated wails runtime to fix events issue 4 years ago
project.json changed over to vue/webpack 4 years ago

README.md

Fermion

What is Fermion?

Fermion is a new code editor based on a Javascript/Vue frontend with a Go backend. The name is derived from Atom as Fermion is intended to be a simpler, more broken down version of Atom (that is also not owned by a company). Why this tech-stack? Because I like it. Besides it is very OS and platform agnostic. While I agree that javascript is comparatively resource hungry, I value the ease of use from Javascript and Vue over e.g. GTK or QT. Besides as little computation is done in the frontend it should also be able to run on less powerful machines.

Getting started

This Project uses the fantastic Wails. Basically think electron but with a Go backend. See the Wails installation instructions on how to install. This should also get Node and Go for you. Make sure Wails is in your $PATH variable so you can use the wails CLI.

When you want to develop for the frontend you can just run wails serve in the project directory. This should start a local server with the backend running. To start the frontend run npm run serve in the frontend directory which you should then be able to reach on localhost:8080. Changes to the frontend should be automatically build and the frontend should reload. Sometimes, however, you need to refresh the tab for things to work. Also, changes to the backend are not build automatically, so you need to stop wails and run wails serve again.

If you plan to do more work on the backend I made a small shell script debug.sh. On other platforms just run wails build -d which will produce a binary you can then use to test. When building you also don't need to build the frontend separately as it is bundled by wails into the binary.

Building Fermion

Building Fermion should be simple. Just install Wails and run wails build. Make sure you have wails in your $PATH.