Echo JS 0.11.0

<~>

tracker1 comments

tracker1 2304 days ago. link 1 point
It's puppeteer... I'm not even sure I understand the need to separate the "server" in this app.
tracker1 2304 days ago. link 2 points
Love this...  It's literally the first validation tool I've seen for react that didn't feel like a byzantine mess that was worse than rolling my own.
tracker1 2306 days ago. link 1 point
Not sure on the new syntax... if this isn't adopted by TS, it's unlikely to see the light of day in JS at this point... also, unsure if there's a babel implementation with this syntax either...  Decorators have been in development hell since before ES6/ES2015 was finalized.
tracker1 2309 days ago. link 1 point
So, I'm creating a SQL Server versioned project. We have targets using Windows, Linux and are moving to a containerized environment for testing.  SQL projects in Visual Studio can only be built in Windows and we've had some troubles with version conflicts (several customers and internal deployments and growing).  So moving to a number list of version scripts... we need a way to run it with all of the above environments.

I created the above module to better support those use cases for script deploys.  The export scrips (baseline) from the sql project will only really run via sqlcmd, not to mention issues with UTF8/16le, and windows uses -v for variables and linux uses environment variables... this handles all of those use cases.

About a week of very heavy work with thorough test coverage (about 5 files, mostly small/simple utilities are excluded).  There's also a set of integration tests that will create a docker container, and populate it with both a local sqlcmd (if available) and the sqlcmd inside the sql server container instance.
tracker1 2310 days ago. link 1 point
I would only suggest one change in the article, and advice to anyone using this... always have a separate action item on screen for this.  A copy button, next to the text, or if a textarea an overlay or above or below.

Having the copy action on a click trigger will be unexpected behavior.  Click on the text should probably do a `.select()` of the entire field though, but not copy to clipboard.  A separate action should be doing that.
tracker1 2311 days ago. link 1 point
edited the title to match the Repo Description...

Some of the hooks may well be very useful, I've seen quite a few.  I'm not the downvote, but the clickbait tile was probably the reason.
tracker1 2313 days ago. link 1 point
commitzen looks so cool... definitely going to give it a spin.
tracker1 2313 days ago. link 1 point
Seems like a decent abstraction around the postMessage API... which frankly is a bit painful to use in practice.
tracker1 2314 days ago. link 1 point
Would probably suggest a followup on using ES, Kibana and Filebeats from within a container... you can pass the docker socket to filebeats running in a container, and locally, since you're unlikely to cluster, having ES in the background with Kibana is probably easier to set/reset.
[more]