- Node.js
- Webpack
- JavaScript
Jate or just another text editor is a a progressive web application. This application uses webpack to add necessary plugins including css-loader and babel to be able to run newer css and javascript on older devices. It also utilizes asset caching with the service worker giving the ability to use the application without internet connection. For persisting data, it uses IndexedDB. The manifest plugin in the webpack along with the installation event handlers allow you to distribute this application to each user's personal devices that can be used without internet connection.
- Fork the repo to make a copy.
- Next, clone the project using
git clone https://github.com/ianahart/jate-text-editor.git
. - In the root of the directory run
npm install
to install the dependencies for the client and the server. - After the dependencies have been installed run the command
npm run start
to startup the application. - You will be able to visit the application at
http://localhost:8080/
specifed by webpack.
To use the application click inside the editor and start writing some JavaScript! :)
Visit Live application here
N/A
Most of the boilerplate for this project was provided by edX bootcamps.
This project is covered under MIT License
License Text
Copyright (c) 2024 Ian Hart
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
As of now I have no plans to develop this application any further. However, this code base can be used as a starting point for future of development of a text editor.
No contributions are being accepted at this time.