Skip to content

1.0 Docs: Home

Louis Stanko edited this page Nov 20, 2020 · 2 revisions

Documentation

Add new file

  1. create a new filename.ts in src/
  2. in webpack.config.js add './src/filename.ts' to the entry array
  3. Paste this into filename.ts. Use the following snippet so you have access to all of the important functions and variables:
import {Helper} from './core'
import {Commands, fs, domCmd} from './init'

/* Start your new project here */

Additional Stuff

This project is far from done!

  • If you have noticed an issue or bug report it here.
  • Contributors and maintainers always welcome!
  • If you have used this project for your project, let me know :)
  • Share your contributions so others can profit too.

TODOs & some ideas (for now)

  1. clean up the code
  2. rewrite the autocomplete method for the sake of performance
  3. split the code into multiple files
  4. fully document the code
  5. add the ability to create files via echo or nano command
    • save files created by the user in local storage.
  6. use webpack
  7. fix the last commands issue (Arrow Up should always work)