How to install Parse.com 'Cloud Code' on Windows? - javascript

Parse.com have released their 'Cloud Code' JavaScript API, but there are no instructions for getting started on Windows.
How do you go about getting up and running in a Windows environment?
https://parse.com/docs/cloud_code_guide

This is what I did to get Parse.com Cloud Code running on Windows 8.
Install Python 2.7 (parse don't tell
you this)
Install Git for windows (Msysgit)
Run 'Git Bash' as Admin, which will
give you a bash style command line.
Make sure Python is working in the Git Bash... python
From here you can follow the Parse
instructions, but remove 'sudo from
the command they give you:
curl -s https://www.parse.com/downloads/cloud_code/installer.sh | /bin/bash
From here it worked for me.

We released an official version of the command line tools for Windows last week. Check it out at http://blog.parse.com/2012/10/25/parse-command-line-tools-available-for-windows/

Related

npm-clipboardy does not work when I launch my Discord Bot in Heroku

I get this error in my Heroku console :
Couldn't find the xsel binary and fallback didn't work. On Debian/Ubuntu you can install xsel with: sudo apt install xsel
I made my discord bot and am trying to launch it in Heroku but the clipboardy does not seems to function . I used Windows 10,Node 14.18.3 and Clipboardy 2.3.0
If have a solution or a alternate for clipboardy do help.

Watchman installation fails on mac os version 10.12

I'm trying to set up the development environment for react-native on my MacBook Pro 2012.
I'm trying to install watchman with Homebrew as the documentation suggests but I get this error and the build fails:
Error: You are using macOS 10.12.
We (and Apple) do not provide support for this old version.
You will encounter build failures with some formulae.
Please create pull-requests instead of asking for help on Homebrew's GitHub,
Twitter or any other official channels. You are responsible for resolving
any issues you experience while you are running this
old version.
I'm fairly new to mac os and I don't know how to fix this. I read a lot about it and there does not seem to be a fix for my situation.
I am sorry about your installation issue, but homebrew does only support the latest macOS three versions, which would be Mojave (10.14), Catalina (10.15), BigSur (11.0).
With the most recent release Monterey (12.0), the Mojave artifact would be dropped pretty soon. So you can to build from source yourself.
I would recommend you to upgrade to a more recent macOS version to have a smooth formula installation experience.
I have managed to install Facebook watchman in High Sierra 10.13.6 using MacPort tools.
1- Download MacPorts package related to your version from: https://www.macports.org/install.php#installing
2- Extract and install it.
3- Run $sudo port -v selfupdate for any update.
4- Once successfully installed run the command: sudo port install watchman
For more details check the following documentations:
https://facebook.github.io/watchman/docs/install.html
https://www.macports.org/install.php#installing

Big error when trying to set up Github pages

Trying to set up project on github pages, but during following steps from
here
at step 2 I getting this error from images
Any idea?
I working on Win7
with NPM 5.6.0
Node 8.11.3
It seems you need to run as administrator, like so: sudo npm install --save gh-pages.
Or if you'd running on Windows could be:
right-click on CLI icon
open as administrator
Perform your command (now you're administrator)
The error you're getting indicates you need to elevate your shell's permission.
Use your environment's equivalent of sudo/"Run as Administrator" to grant the proper access to perform the functions required to install.

Meteor js Windows install error "Failed to contact install server"

I have tried running the install with "Run as Admin" feature on windows too, but the same issue persists.
I see this question has been posted before but still no resolution given.
Basically the following error message comes in the middle of the install and the install stops. Please help.
Error message:
"Failed to contact install server. Please try again later."
Check if you have Node js already installed before installing meteorjs other wise it crashes on Windows sometimes hope it helped.
https://nodejs.org/en/download/
Install meteor with this installer: https://github.com/meteor/meteor/wiki/Preview-of-Meteor-on-Windows
If you are behind a proxy set these parameters HTTP_PROXY and HTTPS_PROXY: Using Meteor behind a proxy
Update your meteor installation: meteor update
The meteor will be updated to the last version.
install from https://github.com/meteor/meteor/wiki/Preview-of-Meteor-on-Windows (the >60MB file) and set the user.meteor folder in your path
the problem with windows installation is too long pathnames (>256) so better try a linux VM

Trouble deploying Node.js app to heroku

I have tested and completed a version of my app that uses Node.js and more specifically it incorporates the node twitter module. When following Heroku's deployment guide and I execute heroku git:clone -a groupmetweetbot I get the following output in the console:
If I continue on and execute the following:
$ cd groupmetweetbot
$ git add .
$ git commit -am "make it better"
$ git push heroku master
the console tells me that the app is deployed.
This leaves me with a few questions. How can I fic this filename too long issue? I can't find any easy answer on how to start and sleep my app on Heroku. Any help is greatly appreciated.
you're hitting this bug https://github.com/npm/npm/issues/3697
you could try using npm v3

Categories