{"id":24521157,"url":"https://github.com/matthijskamstra/skeletor","last_synced_at":"2026-04-12T13:03:14.203Z","repository":{"id":50821733,"uuid":"110221133","full_name":"MatthijsKamstra/skeletor","owner":"MatthijsKamstra","description":"Haxe node.js / javascript bootstrap project with server ","archived":false,"fork":false,"pushed_at":"2022-12-07T09:16:59.000Z","size":734,"stargazers_count":1,"open_issues_count":9,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-01-22T02:49:01.683Z","etag":null,"topics":["bootstrap","expressjs","haxe","javascript","node","node-js","nodejs","server","socket-io","socketio"],"latest_commit_sha":null,"homepage":"","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MatthijsKamstra.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-11-10T08:15:42.000Z","updated_at":"2022-11-10T08:17:18.000Z","dependencies_parsed_at":"2023-01-24T16:30:59.503Z","dependency_job_id":null,"html_url":"https://github.com/MatthijsKamstra/skeletor","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MatthijsKamstra%2Fskeletor","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MatthijsKamstra%2Fskeletor/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MatthijsKamstra%2Fskeletor/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MatthijsKamstra%2Fskeletor/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MatthijsKamstra","download_url":"https://codeload.github.com/MatthijsKamstra/skeletor/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243729030,"owners_count":20338381,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bootstrap","expressjs","haxe","javascript","node","node-js","nodejs","server","socket-io","socketio"],"created_at":"2025-01-22T02:49:08.353Z","updated_at":"2026-04-12T13:03:14.152Z","avatar_url":"https://github.com/MatthijsKamstra.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Skeletor\n\n![](skeletor.jpg)\n\nI do a lot of experiments with Haxe and Node.js and something like this is usually how I start things.\n\nIt seems a good idea to make a skeleton project for this.\n\n\n## Desciption project\n\nthis is a bootstrap project for a quick backend in node.js (usually deployed to Heroku)\n\n- [Haxe](http://www.haxe.org) The Cross-platform Toolkit for transpiling to javascript\n- [Bootstrap](https://getbootstrap.com/docs/4.0/) for css framework\n- [Express.js](https://expressjs.com/) Fast, unopinionated, minimalist web framework for Node.js\n- [Socket.io](https://socket.io/) FEATURING THE FASTEST AND MOST RELIABLE REAL-TIME ENGINE\n- [Vue.js](https://vuejs.org/) a progressive framework for building user interfaces.\n- [Fontawesome](http://fontawesome.io/icons/) for nice icons\n- Simple authencation : based upon Sessions\n- toggle button with socket action back and forth\n- basic api\n- example code vue.js\n- vue.js http json example\n- templating for navbar (haxe templating?) #WIP\n\n## TODO\n\n- json db (Heroku doesn't save files saved in folder like `.json` db , but locally saved data can be uploaded)\n- pass/user in json.db\n- use [haxelow](https://github.com/ciscoheat/haxelow) / lowdb for db\n\n\n\n## Json definition aka AST\n\nEasy way to make AST files for `.json`\n\n\u003chttp://matthijskamstra.github.io/hxjsondef/\u003e\n\n## Install\n\n```\nhaxelib install\n```\n\nSome stuff that doesn't load easily by haxelib\n\n```\n# haxe-js-kit for externs\nhaxelib git js-kit https://github.com/clemos/haxe-js-kit.git haxelib\n\n# I sometimes use my personal set haxe-externs\nhaxelib git hxexterns https://github.com/MatthijsKamstra/hxexterns.git\n\n# cutting edge vue.js externs\nhaxelib git vue https://github.com/MatthijsKamstra/Vue.hx.git\n```\n\n\n## Files\n\n```\n- package.json (I only use this for `watch`)\n+ bin\n\t- package.json (here are your files node.js needs to work)\n```\n\n\n\n## vscode\n\nTo make it work with vscode you need build files without:\n\n- c\n- v\n\n\n\n## sources\n\nsimple session based login (no db)\n\n- https://gist.github.com/smebberson/1581536\n- https://www.codementor.io/emjay/how-to-build-a-simple-session-based-authentication-system-with-nodejs-from-scratch-6vn67mcy3\n- http://www.codexpedia.com/node-js/a-very-basic-session-auth-in-node-js-with-express-js/\n\n\nrest api\n\n- https://medium.com/@jeffandersen/building-a-node-js-rest-api-with-express-46b0901f29b6\n- http://thejackalofjavascript.com/architecting-a-restful-node-js-app/\n- https://www.rapiddg.com/blog/calling-rest-api-nodejs-script\n\n\ntoken\n\n- https://medium.freecodecamp.org/securing-node-js-restful-apis-with-json-web-tokens-9f811a92bb52\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmatthijskamstra%2Fskeletor","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmatthijskamstra%2Fskeletor","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmatthijskamstra%2Fskeletor/lists"}