A graph database is essentially a collection of nodes and edges. Each node represents an entity (such as a person or business) and each edge represents a connection or relationship between two nodes. Every node in a graph database is defined by a unique identifier, a set of outgoing edges and/or incoming edges and a set …
Scrape-It Node.js
Scrape-It is a node package to scrape web page data with custom required data. It has only a simple request module for making requests. That means you cannot directly parse ajax pages with it, but in general you will have those scenarios: The ajax response is in JSON format. In this case, you can make the …
AR comes to Android with the ARCore SDK
Unity and Google have a shared vision of democratizing Virtual and Augmented Reality development. Unity’s XR team has been working hand-in-hand with the Immersive Computing team at Google to overcome some of the most difficult challenges AR development presents. One of the biggest hurdles that developers face is ensuring that their apps and experiences are …
CKEditor – Fully Customizable Editor
CKEditor is a WYSIWYG rich text editor which enables writing content directly inside of web pages or online applications. Its core code is written in JavaScript and it is available under open source and commercial licenses. https://ckeditor.com/docs/ckeditor5/latest/builds/guides/integration/installation.html CKEditor supports React, Vue, Angular, Electron, Bootstrap, jQuery, webpack and NPM Reference: https://ckeditor.com/
Vagrant
Vagrant provides the same, easy workflow regardless of your role as a developer, operator, or designer. It leverages a declarative configuration file which describes all your software requirements, packages, operating system configuration, users, and more. Vagrant works on Mac, Linux, Windows, and more. Remote development environments force users to give up their favorite editors and …
Zip files on Client Side
You can make zip file with contents in javascript easily. var zip = new JSZip();zip.file(“Hello.txt”, “Hello World”); var dir = zip.folder(“images”);dir.file(“smile.gif”, imgData, {base64: true});zip.generateAsync({type:”blob”}) .then(function(content) { saveAs(content, “example.zip”); }); This code will download zip file in browser, tick,,,Please use this lib for frontend side zip file generation. Reference: https://stuk.github.io/jszip/
YOPmail : Disposable and Free email address
YOPmail’s free, quick and feature rich service guards you against spam, phishing and other online abuses. Protect your actual email, instead use YOPmail’s disposable one to sign-up wherever you want. YOPmail creates temporary inboxes of your choice instantaneously. http://www.yopmail.com/en/ The benefit is that if anyone compromises the address or utilities it in connection with email …
Do you get node-gyp build issue yet?
Wow.. it is tricky issue for only you. Please install this node package. This package will install windows VS build tools and your issues will be resolved. https://www.npmjs.com/package/windows-build-tools
TeamCity – JetBrains
TeamCity is a Java-based build management tool and CI(continuous integration) server from JetBrains TeamCity supports the following version control systems: Subversion, CVS, Visual Studio Team Services, Microsoft Visual SourceSafe, Git, Mercurial, etc TeamCity is self-served CI server/agent application provided by JetBrains, so you can install teamcity on your local or other VM and use for …
Swagger API Documentation on Your Project
Swagger is an open source software framework backed by a large ecosystem of tools that helps developers design, build, document, and consume RESTful Web services.You can embed swagger API doc in any kinds of projects(Node, PHP, etc…). For example, you can user swagger-express-ui and swagger-jsdoc packages in express.js backend project. Also, there is public swagger …