
whats wrong of my code ?
------------
const http = require("http");
const url = require('url');
const app = express()
var hostName = '127.0.0.1';
var port = 3000;
var server = http.createServer(function(req,res){
res.setHeader('Content-Type','text/plain');
const parsed = url.parse(req.url);
const pathname = parsed['pathname']
const queryObject = url.parse(req.url,true).query;
let queryValue = queryObject['name']
if(queryValue==null){
queryValue=""
}
if (pathname=="/"){
res.end("SUCCESS!")
}
else if (pathname=="/echo"){
res.end("SUCCESS! echo")
}
app.get('/foxtrot/:value', (req, res) => {
res.send("SUCCESS! Received " + req.params.value + " via foxtrot")
})
app.get('/*', (req, res) => {
res.send("FAILED! Fix your URL.")
})
app.listen(port,'0.0.1',()=>{
console.log('listening')
})
server.listen(port,hostName,()=>{
console.log(`Server running at http://${hostName}:${port}/`);
});
------
when i am running it ,itshows "SyntaxError: Unexpected end of input
?[90m at wrapSafe (internal/modules/cjs/loader.js:1001:16)?[39m
?[90m at Module._compile (internal/modules/cjs/loader.js:1049:27)?[39m
?[90m at Object.Module._extensi

Trending nowThis is a popular solution!
Step by stepSolved in 4 steps with 2 images

- Filename: runlength_decoder.py Starter code for data: hw4data.py Download hw4data.py Download hw4data.pyYou must provide a function named decode() that takes a list of RLE-encoded values as its single parameter, and returns a list containing the decoded values with the “runs” expanded. If we were to use Python annotations, the function signature would look similar to this:def decode(data : list) -> list: Run-length encoding (RLE) is a simple, “lossless” compression scheme in which “runs” of data. The same value in consecutive data elements are stored as a single occurrence of the data value, and a count of occurrences for the run. For example, using Python lists, the initial list: [‘P’,‘P’,‘P’,‘P’,‘P’,‘Y’,‘Y’,‘Y’,‘P’,‘G’,‘G’] would be encoded as: ['P', 5, 'Y', 3, ‘P’, 1, ‘G’, 2] So, instead of using 11 “units” of space (if we consider the space for a character/int 1 unit), we only use 8 “units”. In this small example, we don’t achieve much of a savings (and indeed the…arrow_forwardPlease help me with my code in python. Can you change the start_tag and end_tag to strip. Since we have not discussed anything about tag yet. Thank you def read_data(): with open("simple.xml", "r") as file: content = file.read() return content def extract_data(tag, string): data = [] start_tag = f"<{tag}>" end_tag = f"</{tag}>" while start_tag in string: start_index = string.find(start_tag) + len(start_tag) end_index = string.find(end_tag) value = string[start_index:end_index] data.append(value) string = string[end_index + len(end_tag):] return data def get_names(string): names = extract_data("name", string) return names def get_calories(string): calories = extract_data("calories", string) return calories def get_descriptions(string): descriptions = extract_data("description", string) return descriptions def get_prices(string): prices = extract_data("price", string) return prices def…arrow_forward6-Fully explain the following code and draw all possible outputs. { $(document).ready(function() $("button").click(function () { $("#div1").remove(); }); }); This is some text in the div. This is a paragraph in the div. This is another paragraph in the div. Remove div elementarrow_forward
- Estimated Completion Time: 2-3 minutes Which of the following situations will lead to an object being aliased? Select all that apply. n Assigning a list to L1, then assigning L1 to L2 n Assigning a string to S1, then assigning the result of slicing S1 (i.e. S1[:]) to S2 n Assigning a list to L1, then assigning the result of a copy() method on L1 to L2 n Assigning a list to L1, then assigning the result of slicing L1 (i.e., L1[:]) to L2 n Assigning a string to S1, then assigning the result of a replace() method on S1 to S2 n Assigning a list to L1, then using L1 in a function call with header "def foo(x: List) -> List" n Assigning a string to S1, then using S1 in a function call with header "def foo(x: str) -> None" n Assigning two lists to L1 and L2, then assigning the result of adding them to L3arrow_forwardPlease check if this code is correct for a client-side Node.js document editor const url = "http://localhost:3000/POST"; let undoStack = []; let redoStack = []; function formatText(command) { document.execCommand(command, false, null); } function changeColor() { const color = prompt("Enter text color code:"); document.execCommand("foreColor", false, color); } function changeFont() { const font = prompt("Enter font:"); document.execCommand("fontName", false, font); } function changeFontSize() { const size = prompt("Enter font size:"); document.execCommand("fontSize", false, size); } function toUpperCase() { const selectedText = window.getSelection().toString(); document.execCommand("insertText", false, selectedText.toUpperCase()); } function toLowerCase() { const selectedText = window.getSelection().toString(); document.execCommand("insertText", false, selectedText.toLowerCase()); } function increaseImageSize() { const…arrow_forwardDesign a class that acquires the JSON string from question #1 and converts it to a class data member dictionary. Your class produces data sorted by key or value but not both. Provide searching by key capabilities to your class. Provide string functionality to convert the dictionary back into a JSON string. question #1: import requestsfrom bs4 import BeautifulSoupimport json class WebScraping: def __init__(self,url): self.url = url self.response = requests.get(self.url) self.soup = BeautifulSoup(self.response.text, 'html.parser') def extract_data(self): data = [] lines = self.response.text.splitlines()[57:] # Skip the first 57 lines for line in lines: if line.startswith('#'): # Skip comment lines continue values = line.split() row = { 'year': int(values[0]), 'month': int(values[1]), 'decimal_date': float(values[2]),…arrow_forward
- Computer Networking: A Top-Down Approach (7th Edi...Computer EngineeringISBN:9780133594140Author:James Kurose, Keith RossPublisher:PEARSONComputer Organization and Design MIPS Edition, Fi...Computer EngineeringISBN:9780124077263Author:David A. Patterson, John L. HennessyPublisher:Elsevier ScienceNetwork+ Guide to Networks (MindTap Course List)Computer EngineeringISBN:9781337569330Author:Jill West, Tamara Dean, Jean AndrewsPublisher:Cengage Learning
- Concepts of Database ManagementComputer EngineeringISBN:9781337093422Author:Joy L. Starks, Philip J. Pratt, Mary Z. LastPublisher:Cengage LearningPrelude to ProgrammingComputer EngineeringISBN:9780133750423Author:VENIT, StewartPublisher:Pearson EducationSc Business Data Communications and Networking, T...Computer EngineeringISBN:9781119368830Author:FITZGERALDPublisher:WILEY





