https://github.com/codemelted/codemelted_developer
Software engineers are now required to learn multiple languages, technologies, and frameworks in order to fully support full stack engineering. This project aims to simplify this by developing a set of cross platform modules implementing a similar / identical Application Program Interface (API) regardless of the chosen technology.
https://github.com/codemelted/codemelted_developer
c-library cpp-lib cpp-library cross-platform deno deno-module flutter-apps flutter-library gps html-css-javascript js-module modules pwsh pwsh-module pwsh-scripts raspberry-pi
Last synced: 4 months ago
JSON representation
Software engineers are now required to learn multiple languages, technologies, and frameworks in order to fully support full stack engineering. This project aims to simplify this by developing a set of cross platform modules implementing a similar / identical Application Program Interface (API) regardless of the chosen technology.
- Host: GitHub
- URL: https://github.com/codemelted/codemelted_developer
- Owner: CodeMelted
- License: mit
- Created: 2024-03-18T03:16:38.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-13T01:46:39.000Z (4 months ago)
- Last Synced: 2025-03-13T02:33:57.231Z (4 months ago)
- Topics: c-library, cpp-lib, cpp-library, cross-platform, deno, deno-module, flutter-apps, flutter-library, gps, html-css-javascript, js-module, modules, pwsh, pwsh-module, pwsh-scripts, raspberry-pi
- Language: Dart
- Homepage: https://codemelted.com
- Size: 6.76 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
CodeMelted DEV | Flutter Module
The `codemelted.dart` module provides the power of Flutter to build Single Page Applications (SPA) with an easy setup to install the SPA as a Progressive Web App (PWA). This module only targets the Flutter web implementing Flutter specific code to take full advantage of the widget toolkit and Flutter native code that can be utilized within the web. Code that has no native Flutter equivalent will be facilitated via the `codemelted.cpp` loading the compiled `*.wasm` and `*.js` outputs and calling those bindings within the `codemelted.dart` Flutter module.
**LAST UPDATED:** 2025-03-02
Hope you enjoy the content. Any support is greatly appreciated. Thank you! 🙇
**Table of Contents**
- [GETTING STARTED](#getting-started)
- [FEATURES](#features)
- [USAGE](#usage)
- [Async I/O Use Cases](#async-io-use-cases)
- [Game](#game)
- [Task](#task)
- [Worker](#worker)
- [Data Use Cases](#data-use-cases)
- [Database](#database)
- [Data Check](#data-check)
- [Disk](#disk)
- [File](#file)
- [Firebase](#firebase)
- [JSON](#json)
- [String Parse](#string-parse)
- [Storage](#storage)
- [XML](#xml)
- [NPU Use Cases](#npu-use-cases)
- [Compute](#compute)
- [Math](#math)
- [Memory](#memory)
- [SDK Use Cases](#sdk-use-cases)
- [Events](#events)
- [Hardware](#hardware)
- [Logger](#logger)
- [Network](#network)
- [Runtime](#runtime)
- [Schema](#schema)
- [Share](#share)
- [User Interface Use Cases](#user-interface-use-cases)
- [App](#app)
- [Audio](#audio)
- [Dialog](#dialog)
- [Theme](#theme)
- [UI Widget](#ui-widget)
- [MODULE INFORMATION](#module-information)
- [License](#license)
- [Versioning](#versioning)
- [codemelted.dart Change Log](#codemelteddart-change-log)# GETTING STARTED
TBD
*NOTE: Module is in active development and not ready for primetime. Once stable, this section will be filled in.*
# FEATURES
# USAGE
The above module reflects how the `codemelted.dart` module communicates with the supporting `codemelted.js` and `codemelted.wasm` files. These are a result of the WASM `codemelted.cpp` compiled target. It provides the support functionality where no direct Flutter implementation exists. So the `codemelted.dart` module imports the module to provide that functionality. The sub-sections below will provide Flutter examples of each of the use case functions.
## Async I/O Use Cases
### Game
TBD
### Task
TBD
### Worker
TBD
## Data Use Cases
### Database
TBD
### Data Check
TBD
### Disk
TBD
### File
TBD
### Firebase
TBD
### JSON
TBD
### String Parse
TBD
### Storage
TBD
### XML
TBD
## NPU Use Cases
### Compute
TBD
### Math
TBD
### Memory
TBD
## SDK Use Cases
### Events
TBD
### Hardware
TBD
### Logger
TBD
### Network
TBD
### Runtime
TBD
### Schema
TBD
### Share
TBD
## User Interface Use Cases
### App
TBD
### Audio
TBD
### Dialog
TBD
### Theme
TBD
### UI Widget
TBD
# MODULE INFORMATION
The following sub-sections cover various aspects the `codemelted.dart` module information. It is a single file implementation of the identified use cases.
## License
MIT License
© 2024 Mark Shaffer
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.
## Versioning
The versioning of the module will be captured via GitHub or the modules documentation method. It will utilize semantic versioning `X.Y.Z` with the following rules for the numbering scheme this project.
- **X:** Completion of a given set of use cases (i.e. Async IO, Data, NPU, SDK, or User Interface).
- **Y:** Use case implemented, documented, tested, and ready for usage by a developer.
- **Z:** Bug fix or expansion of a use case.## codemelted.dart Change Log