{"id":19080257,"url":"https://github.com/clemos/meadowlark","last_synced_at":"2026-01-30T07:14:05.705Z","repository":{"id":34712349,"uuid":"38688894","full_name":"clemos/meadowlark","owner":"clemos","description":"Following the tutorial in \"Web Development with Node and Express\" but with Haxe.","archived":false,"fork":false,"pushed_at":"2015-03-19T10:01:52.000Z","size":784,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-16T22:05:22.890Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Haxe","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/clemos.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-07-07T13:17:57.000Z","updated_at":"2021-05-08T07:18:47.000Z","dependencies_parsed_at":"2022-08-03T22:15:17.978Z","dependency_job_id":null,"html_url":"https://github.com/clemos/meadowlark","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/clemos/meadowlark","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clemos%2Fmeadowlark","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clemos%2Fmeadowlark/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clemos%2Fmeadowlark/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clemos%2Fmeadowlark/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/clemos","download_url":"https://codeload.github.com/clemos/meadowlark/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clemos%2Fmeadowlark/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28907409,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-30T06:42:00.998Z","status":"ssl_error","status_checked_at":"2026-01-30T06:41:58.659Z","response_time":66,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":[],"created_at":"2024-11-09T02:18:08.405Z","updated_at":"2026-01-30T07:14:05.672Z","avatar_url":"https://github.com/clemos.png","language":"Haxe","funding_links":[],"categories":[],"sub_categories":[],"readme":"## The Meadowlark Travel Website\n\nFollowing along the project in [Web Development with Node and Express](http://shop.oreilly.com/product/0636920032977.do), but using Haxe as language instead of javascript. A work in progress that will evolve using Haxe solutions instead of Node packages. For example, it's using [Buddy](https://github.com/ciscoheat/buddy) for testing instead of mocha and chai.\n\n**Current progress:** Beginning of Chapter 20.\n\n### Todo \n\n* Chapter 8: Skipped the jQuery File Upload example.\n\n## Installation\n\nIf you're using [Vagrant](http://vagrantup.com), run `vagrant up` and you're set.\n\nIf not, make sure that Haxe, Node.js, Grunt, Git, and MongoDB is installed ([provision.sh](https://github.com/ciscoheat/meadowlark/blob/master/provision.sh) can be useful), then run `npm install`.\n\nThere are a few haxelib dependencies that will reveal themselves when you compile. But a special one is [js-kit](https://github.com/clemos/haxe-js-kit), a very nice Node.js library for Haxe available only from github. Install with `haxelib git js-kit https://github.com/clemos/haxe-js-kit.git dev`. If you get compilation errors, it may not yet be synced with the \"bleeding edge\" for this project, then you can use `haxelib git js-kit https://github.com/ciscoheat/haxe-js-kit.git dev` on your own risk! :)\n\nIf you're using Vagrant on Windows you may get problems with symlinks when installing npm packages (though [this](http://xiankai.wordpress.com/2013/12/26/symlinks-with-vagrant-virtualbox/) may help, or starting Vagrant as Administrator). Then use `--no-bin-links`, so installing a package may finally look like this:\n\n`sudo npm install --no-bin-links --save-dev grunt-contrib-less`\n\n## Compiling and Running\n\nCompile with `haxe meadowlark.hxml`, then go to the `www` directory and run with `node meadowlark.js` or `forever -w meadowlark.js`. Then browse to `http://localhost:3000` and it *should* work.\n\nTake a look in `meadowlark.hxml` for some compiler defines that may be interesting to toggle.\n\n## Authentication\n\nNo login data for authentication are saved in the project for security reasons, so to use your Gmail and Facebook information, create `www/.env` with the following content:\n\n```\nFB_APPID=\nFB_APPSECRET=\nGMAIL_USER=\nGMAIL_PASSWORD=\nTWITTER_CONSUMERKEY=\nTWITTER_CONSUMERSECRET=\nGOOGLE_MAPS_APIKEY=\nWUNDERGROUND_APIKEY=\n```\n\nFill in the blanks, and they will be imported with the help of [node-env-file](https://www.npmjs.com/package/node-env-file).\n\n## Tests\n\nThe in-browser tests can be run by appending `?test=1` to any page url, for example `http://localhost:3000/about?test=1`. The cross-page tests are executed with the headless browser [Zombie.js](http://zombie.labnotes.org/) and is run from command-line: `node www/qa/tests-crosspage.js` (of course the server has to be running as well.) Or even easier, use `grunt tests`.\n\n## Grunt - Finally tamed\n\n[Read how the Gruntfile became manageable](https://github.com/ciscoheat/meadowlark/wiki/A-manageable-Gruntfile)\n\n## Thanks\n\nThanks to Fintan Boyle for the [grunt-haxe](https://github.com/Fintan/grunt-haxe) plugin, and of course to all the plugin authors for making things free and useful.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fclemos%2Fmeadowlark","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fclemos%2Fmeadowlark","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fclemos%2Fmeadowlark/lists"}