-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Development #1
Open
Zrrg
wants to merge
20
commits into
master
Choose a base branch
from
development
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Development #1
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docs: readme fix
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Scoring: File Manager
Assignment
Runs with:
npm run start -- --username=your_username
Or, if arguments are not detected, it might work with:
npm run start -- -- --username=your_username
Commands
ls, list, dir / mkdir / up, back / cd / add, touch, write, w / cat, read / rm , del, remove, delete / rn, rename / cp, copy / mv, move / eol / cpuinfo / home, homedir / userinfo / arch, architecture / hash / compress / decompress / help, ? / .exit, exit, quit, q!
Note
currentDirectory();
before each break in switch statement, because if i put it in function after all statments, it shows old folder (async so async). If there are more elegant solution for my case, please let me know.compress
command deletes original file.Extra features
rm
by distinguishing between files and directories withisfile.js
.logOutput.js
, well originally I had bigger plans for this but don't want to break anything at this point.Basic Scope
✅ - +6 Application accepts username and prints proper message
✅ - +10 Application exits if user pressed
ctrl+c
or sent.exit
command and proper message is printed✅ - +20 Attempts to perform an operation on a non-existent file or work on a non-existent path result in the operation fail
✅ - +10 Operation fail doesn't crash application
✅ - +10 Go upper from current directory
✅ - +10 Go to dedicated folder from current directory
✅ - +20 List all files and folders in current directory
✅ - +10 Read file and print it's content in console
✅ - +10 Create empty file
✅ - +10 Rename file
✅ - +10 Copy file
✅ - +10 Move file
✅ - +10 Delete file
✅ - +6 Get EOL (default system End-Of-Line)
✅ - +10 Get host machine CPUs info (overall amount of CPUS plus model and clock rate (in GHz) for each of them)
✅ - +6 Get home directory
✅ - +6 Get current system user name (Do not confuse with the username that is set when the application starts)
✅ - +6 Get CPU architecture for which Node.js binary has compiled
✅ - +20 Calculate hash for file
✅ - +20 Compress file (using Brotli algorithm)
✅ - +20 Decompress file (using Brotli algorithm)
Advanced Scope
✅ +30 All operations marked as to be implemented using certain streams should be performed using Streams API
✅ +20 No synchronous Node.js API with asynchronous analogues is used (e.g. not used
readFileSync
instead ofreadFile
)✅ +20 Codebase is written in ESM modules instead of CommonJS
✅ +20 Codebase is separated (at least 7 modules)
Forfeits
Readme.md
,.gitignore
, etc.)