Tagged Questions
0
votes
0answers
30 views
When namespacing I receive a “cannot GET error” displayed in browser
I'm using namespaces to differentiate between version of my socket.io chat app, and I'm having trouble with a "cannot GET error displayed in browser."
I plan on continually updating a chat app I made ...
0
votes
1answer
27 views
How to read text file and pipe to HTML table using Node.js and Express
I am running Node.js with Express and am fairly new to the world of Javascript. I am trying to find a way of parsing a text file and outputting certain data from that file into a HTML table. I am able ...
-2
votes
0answers
12 views
Grunt plugin for finding broken links? [on hold]
Is there a Grunt plugin for detecting broken (internal, relative) links in your generated pages? Or is there any node package that is capable of doing this for a collection of HTML files?
0
votes
1answer
26 views
Dynamic Web App to Phonegap
I'm trying to turn a simple webapp into an Android app by using Phonegap Build. My webapp has some simple jQuery AJAX methods (GET/POST). I'm not sure how to go about this -- when I upload the zip to ...
1
vote
0answers
28 views
Jade HTML from string formatting issues
I am trying to render a piece of HTML (created by TinyMCE) which is stored in mongodb and later rendered by jade.
Here is my post.content string as it appears from a console.log:
<p>Well, I'll ...
-1
votes
0answers
46 views
dynamic webpage must bypass cache
I am developing a node.js web server. The webpages are generated dynamically upon request. It seems that when I click reload on my browser the page is only reloaded from cache. How do I ensure that ...
0
votes
4answers
33 views
Parse a HTML structure, what JS tools are available
I have to get out information from a HTML table from a website. I want to do a HTML request from a Node.ja server to that website and parse the HTML table. Are there any libraries or techniques for JS ...
0
votes
1answer
19 views
Node express verifying signed cookie
I am trying to use signed cookies in Node's express module, and have read the documentation, but am confused on how to verify them. As I understand it, I must verify the cookies on the server. ...
1
vote
3answers
42 views
Using node.js to serve up basic web page with CSS and JS includes
I am coming from a (traditional) server side scripting (PHP) background and am trying to experiment with Node to see what the fuss is all about.
Objective: serve up a simple web document with some ...
0
votes
0answers
33 views
As I make new versions of a web app, is it possible to specify which version to launch in browser by adding the version number to the URL? (Node.js)
I made a very simple Node.js chat application on a linux server using a tutorial I found. I have set it up so that when I run
node app.js
I can launch serverdomain:8888 and see my chat app. My goal ...
0
votes
1answer
20 views
Server sent event: Client not receiving response from server
I'm trying to use server sent events so my webpage can have periodic time updates from my server. The issue is that my client is able to interact with my server, however, the response from my server ...
1
vote
1answer
46 views
nodejs Express html
When I use Express framework,I put my ".html" files into folder views,then put ".js" and ".css" files into public.When I run my application,I can get the js and css,but I cann't get the ...
0
votes
1answer
23 views
Populate a html form field with value from a form on another page
I have a form in Nodejs application.When the user clicks on the link near one of the fields,a pop up opens with another form. The value from the popup window is to be sent back to a field in the ...
0
votes
1answer
34 views
node.js with readFile html but not loading/finding jquery file
I'm having trouble loading my jquery file or any file for that matter in a node.js read html file. I spent quite some time on this and noticed that the web based google hosted library file works fine, ...
1
vote
3answers
45 views
Putting regular expressions in strings
I am trying to dynamically create a javascript file B using a javascript file A (written in Node.js) by writing a string from A to a .js file B. I want to use regular expressions in the javascript ...